Xray-core/features/tun/tun.go

12 lines
169 B
Go
Raw Normal View History

2023-04-06 14:00:46 +03:00
package tun
import "github.com/xtls/xray-core/features"
type Interface interface {
features.Feature
}
func InterfaceType() interface{} {
return (*Interface)(nil)
}