1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/features/feature.go

11 lines
320 B
Go
Raw Normal View History

package features
import "v2ray.com/core/common"
// Feature is the interface for V2Ray features. All features must implement this interface.
// All existing features have an implementation in app directory. These features can be replaced by third-party ones.
type Feature interface {
2018-10-12 21:57:56 +00:00
common.HasType
common.Runnable
}