mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-15 09:19:21 +02:00
12 lines
169 B
Go
12 lines
169 B
Go
|
package tun
|
||
|
|
||
|
import "github.com/xtls/xray-core/features"
|
||
|
|
||
|
type Interface interface {
|
||
|
features.Feature
|
||
|
}
|
||
|
|
||
|
func InterfaceType() interface{} {
|
||
|
return (*Interface)(nil)
|
||
|
}
|