mirror of https://github.com/v2ray/v2ray-core
10 lines
127 B
Go
10 lines
127 B
Go
|
package inbound
|
||
|
|
||
|
import (
|
||
|
"github.com/v2ray/v2ray-core/proxy/vmess"
|
||
|
)
|
||
|
|
||
|
type Config interface {
|
||
|
AllowedUsers() []vmess.User
|
||
|
}
|