0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-04-28 22:31:25 +03:00
2023-04-23 19:51:48 +08:00

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)
}