Files
hk4e/wind/entity/service.go
2022-11-20 15:38:00 +08:00

10 lines
119 B
Go

package entity
import "sync"
// 服务列表
type AddressMap struct {
Map map[string][]string
Lock sync.RWMutex
}