mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Root package now contains only initialization code and 'dummy' module. Each module now got its own package. Module packages are grouped by their main purpose (storage/, target/, auth/, etc). Shared code is placed in these "group" packages. Parser for module references in config is moved into config/module. Code shared by tests (mock modules, etc) is placed in testutils.
14 lines
333 B
Go
14 lines
333 B
Go
package modconfig
|
|
|
|
import (
|
|
"github.com/foxcpp/maddy/config"
|
|
"github.com/foxcpp/maddy/module"
|
|
)
|
|
|
|
func AuthDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
|
var provider module.AuthProvider
|
|
if err := ModuleFromNode(node.Args, node, m.Globals, &provider); err != nil {
|
|
return nil, err
|
|
}
|
|
return provider, nil
|
|
}
|