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