summaryrefslogtreecommitdiff
path: root/plugins/config/provider.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/config/provider.go')
-rw-r--r--plugins/config/provider.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/config/provider.go b/plugins/config/provider.go
new file mode 100644
index 00000000..bec417e9
--- /dev/null
+++ b/plugins/config/provider.go
@@ -0,0 +1,15 @@
+package config
+
+type Provider interface {
+ // Unmarshal configuration section into configuration object.
+ //
+ // func (h *HttpService) Init(cp config.Provider) error {
+ // h.config := &HttpConfig{}
+ // if err := configProvider.UnmarshalKey("http", h.config); err != nil {
+ // return err
+ // }
+ // }
+ UnmarshalKey(name string, out interface{}) error
+ // Get used to get config section
+ Get(name string) interface{}
+}