feature.go 320 B

12345678910
  1. package features
  2. import "v2ray.com/core/common"
  3. // Feature is the interface for V2Ray features. All features must implement this interface.
  4. // All existing features have an implementation in app directory. These features can be replaced by third-party ones.
  5. type Feature interface {
  6. common.HasType
  7. common.Runnable
  8. }