proxyport/app/config.go

13 lines
137 B
Go
Raw Normal View History

2023-01-18 14:13:22 +08:00
package app
type (
Conf map[string]ConfItem
ConfItem struct {
RemoteAddr []string
LocalPort int
}
)
var ProxyMap = make(Conf)