3
0

Remove filller interface in pkg/options/helpers.go

This commit is contained in:
Urban Klinc
2020-11-30 10:20:31 +01:00
parent 42c273df6f
commit 1fc06c809f
-6
View File
@@ -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 {