proxyport/app/config.go

13 lines
139 B
Go
Raw Normal View History

2023-01-18 14:13:22 +08:00
package app
type (
2023-01-18 14:32:14 +08:00
Conf map[string]ProxyItem
2023-01-18 14:13:22 +08:00
2023-01-18 14:32:14 +08:00
ProxyItem struct {
2023-01-18 14:13:22 +08:00
RemoteAddr []string
LocalPort int
}
)
var ProxyMap = make(Conf)