1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 18:06:13 -04:00
v2fly/common/environment/rootcap.go
2023-11-26 10:55:27 +00:00

9 lines
199 B
Go

package environment
type RootEnvironment interface {
AppEnvironment(tag string) AppEnvironment
ProxyEnvironment(tag string) ProxyEnvironment
DropProxyEnvironment(tag string) error
doNotImpl()
}