1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 02:16:11 -04:00
v2fly/proxy/vmess/inbound/config.go

19 lines
261 B
Go

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