mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 10:47:48 -05:00
19 lines
251 B
Go
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
|
|
}
|