Rework config directives iteration

Create more high-level wrapper (config.Map) instead of walking syntax
tree directly.
This commit is contained in:
fox.cpp 2019-03-25 23:16:28 +03:00 committed by emersion
parent 9c27d4416f
commit 84d150a00f
12 changed files with 590 additions and 352 deletions

View file

@ -39,4 +39,4 @@ type Module interface {
}
// FuncNewModule is function that creates new instance of module with specified name.
type FuncNewModule func(name string, globalCfg map[string][]string, cfg config.Node) (Module, error)
type FuncNewModule func(name string, globalCfg map[string]config.Node, cfg config.Node) (Module, error)