1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-09 14:54:34 -04:00
v2fly/proxy/vmess/inbound/config.go

19 lines
251 B
Go
Raw Normal View History

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