added Runnable to Tagged Features Interface

This commit is contained in:
Shelikhoo 2021-06-19 10:50:30 +01:00
parent 4b89f9085f
commit 31c4df51e1
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
1 changed files with 2 additions and 0 deletions

View File

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