proxyport/app/config.go

13 lines
142 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
2023-01-19 11:34:30 +08:00
LocalAddr string
2023-01-18 14:13:22 +08:00
}
)
var ProxyMap = make(Conf)