proxyport/app/config.go

15 lines
159 B
Go
Raw Normal View History

2023-01-18 14:13:22 +08:00
package app
type (
2024-06-24 14:24:35 +08:00
config struct {
Proxy 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
}
)
2024-06-24 14:24:35 +08:00
var Conf = &config{}