diff options
author | Valery Piashchynski <[email protected]> | 2021-05-18 15:36:06 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-05-18 15:36:06 +0300 |
commit | f85172106b4723b705aa75c3c310e8cebd050a8d (patch) | |
tree | aa98200d5d01776d4328c31c79b8af52986a4375 /plugins/config/interface.go | |
parent | 60a3793f83c672e24283c009f53e780a4932be50 (diff) |
- Add protected connection
- Update arch diagram
- Update interfaces
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/config/interface.go')
-rw-r--r-- | plugins/config/interface.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/config/interface.go b/plugins/config/interface.go index 59ad981f..b3854e09 100644 --- a/plugins/config/interface.go +++ b/plugins/config/interface.go @@ -11,7 +11,7 @@ type Configurer interface { // } UnmarshalKey(name string, out interface{}) error - // Unmarshal unmarshals the config into a Struct. Make sure that the tags + // Unmarshal unmarshal the config into a Struct. Make sure that the tags // on the fields of the structure are properly set. Unmarshal(out interface{}) error @@ -24,6 +24,6 @@ type Configurer interface { // Has checks if config section exists. Has(name string) bool - // Returns General section. Read-only + // GetCommonConfig returns General section. Read-only GetCommonConfig() *General } |