13 lines
137 B
Go
13 lines
137 B
Go
|
package app
|
||
|
|
||
|
type (
|
||
|
Conf map[string]ConfItem
|
||
|
|
||
|
ConfItem struct {
|
||
|
RemoteAddr []string
|
||
|
LocalPort int
|
||
|
}
|
||
|
)
|
||
|
|
||
|
var ProxyMap = make(Conf)
|