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)
|