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