mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-09 19:02:27 +08:00
10 lines
119 B
Go
10 lines
119 B
Go
package entity
|
|
|
|
import "sync"
|
|
|
|
// 服务列表
|
|
type AddressMap struct {
|
|
Map map[string][]string
|
|
Lock sync.RWMutex
|
|
}
|