1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 21:45:24 +00:00
v2fly/proxy/vmess/inbound/config.go
2016-01-19 01:21:07 +01:00

19 lines
251 B
Go

package inbound
import (
"github.com/v2ray/v2ray-core/proxy/vmess"
)
type DetourConfig struct {
ToTag string
}
type FeaturesConfig struct {
Detour *DetourConfig
}
type Config struct {
AllowedUsers []*vmess.User
Features *FeaturesConfig
}