proxyport/app/config.go

13 lines
137 B
Go

package app
type (
Conf map[string]ConfItem
ConfItem struct {
RemoteAddr []string
LocalPort int
}
)
var ProxyMap = make(Conf)