Cleanup: remove unused code

This commit is contained in:
Sybren A. Stüvel 2022-02-24 12:36:29 +01:00
parent 7420177209
commit 64db518f15

View File

@ -21,15 +21,11 @@ package api_impl
* ***** END GPL LICENSE BLOCK ***** */ * ***** END GPL LICENSE BLOCK ***** */
import ( import (
"reflect"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/config" "gitlab.com/blender/flamenco-ng-poc/internal/manager/config"
"gitlab.com/blender/flamenco-ng-poc/internal/manager/persistence" "gitlab.com/blender/flamenco-ng-poc/internal/manager/persistence"
"gitlab.com/blender/flamenco-ng-poc/pkg/api" "gitlab.com/blender/flamenco-ng-poc/pkg/api"
) )
var stringType = reflect.TypeOf("somestring")
type VariableReplacer interface { type VariableReplacer interface {
ExpandVariables(valueToExpand string, audience config.VariableAudience, platform string) string ExpandVariables(valueToExpand string, audience config.VariableAudience, platform string) string
} }