diff --git a/source/source.go b/source/source.go index 0daaffba5..edd51449f 100644 --- a/source/source.go +++ b/source/source.go @@ -17,18 +17,7 @@ limitations under the License. package source // Value of a feature -type FeatureValue interface { -} - -// Boolean feature value -type BoolFeatureValue bool - -func (b BoolFeatureValue) String() string { - if b { - return "true" - } - return "false" -} +type FeatureValue interface{} type Features map[string]FeatureValue