1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 10:56:07 -04:00
v2fly/common/environment/rootcap.go

9 lines
199 B
Go
Raw Normal View History

2022-02-10 17:50:39 -05:00
package environment
type RootEnvironment interface {
AppEnvironment(tag string) AppEnvironment
ProxyEnvironment(tag string) ProxyEnvironment
2023-11-21 18:03:20 -05:00
DropProxyEnvironment(tag string) error
2022-02-10 17:50:39 -05:00
doNotImpl()
}