v2ray-core/proxy/vmess/inbound/config.go

19 lines
251 B
Go
Raw Normal View History

2015-12-07 19:32:38 +00:00
package inbound
import (
"github.com/v2ray/v2ray-core/proxy/vmess"
)
2016-01-19 00:21:07 +00:00
type DetourConfig struct {
ToTag string
}
type FeaturesConfig struct {
Detour *DetourConfig
}
type Config struct {
AllowedUsers []*vmess.User
2016-01-19 00:21:07 +00:00
Features *FeaturesConfig
2015-12-07 19:32:38 +00:00
}