Feature: add load-balance group

This commit is contained in:
Dreamacro
2019-02-15 14:25:20 +08:00
parent 8636a4f589
commit c295c5e412
6 changed files with 314 additions and 5 deletions

View File

@ -15,6 +15,7 @@ const (
Http
URLTest
Vmess
LoadBalance
)
type ServerAdapter interface {
@ -52,6 +53,8 @@ func (at AdapterType) String() string {
return "URLTest"
case Vmess:
return "Vmess"
case LoadBalance:
return "LoadBalance"
default:
return "Unknow"
}