mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 18:57:44 -05:00
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
|
||
|
}
|