소스 검색

added Runnable to Tagged Features Interface

Shelikhoo 4 년 전
부모
커밋
31c4df51e1
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      features/feature.go

+ 2 - 0
features/feature.go

@@ -16,6 +16,8 @@ func PrintDeprecatedFeatureWarning(feature string) {
 	newError("You are using a deprecated feature: " + feature + ". Please update your config file with latest configuration format, or update your client software.").WriteToLog()
 }
 
+// TaggedFeatures unstable
 type TaggedFeatures interface {
 	GetFeaturesByTag(tag string) (Feature, error)
+	common.Runnable
 }