From 1fc06c809f5e009385af1eb865a9ccc1d2353081 Mon Sep 17 00:00:00 2001 From: Urban Klinc Date: Mon, 30 Nov 2020 10:20:31 +0100 Subject: [PATCH] Remove filller interface in pkg/options/helpers.go --- pkg/options/helpers.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/options/helpers.go b/pkg/options/helpers.go index 781e0a26a..ae248e3e4 100644 --- a/pkg/options/helpers.go +++ b/pkg/options/helpers.go @@ -8,12 +8,6 @@ import ( "github.com/spf13/cast" ) -type ( - filler interface { - fill() - } -) - func fill(opt interface{}) { v := reflect.ValueOf(opt) if v.Kind() != reflect.Ptr {