diff options
Diffstat (limited to 'service/config.go')
-rw-r--r-- | service/config.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/service/config.go b/service/config.go new file mode 100644 index 00000000..d5381376 --- /dev/null +++ b/service/config.go @@ -0,0 +1,6 @@ +package service + +type Config interface { + Get(key string) Config + Unmarshal(out interface{}) error +} |