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