Skip to content

Commit a5d73d7

Browse files
feat(ConfigTypeable): now requires implementing fmt.Stringer.
1 parent ee7e7d0 commit a5d73d7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

config_typeable.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
package configurator
22

3-
import "github.com/matthewhartstonge/configurator/diag"
3+
import (
4+
"fmt"
5+
6+
"github.com/matthewhartstonge/configurator/diag"
7+
)
48

59
type ConfigTypeable interface {
10+
fmt.Stringer
11+
612
ConfigParser
713
ConfigImplementer
814
}

0 commit comments

Comments
 (0)