package app
type (
config struct {
Proxy map[string]ProxyItem
}
ProxyItem struct {
RemoteAddr []string
LocalAddr string
)
var Conf = &config{}