Restructure code tree

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.
This commit is contained in:
fox.cpp 2019-09-08 15:46:46 +03:00
parent d4d807d6c7
commit 35c3b1c792
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
51 changed files with 961 additions and 2223 deletions

View file

@ -1,6 +1,7 @@
// Package module contains interfaces implemented by maddy modules.
// Package module contains modules registry and interfaces implemented
// by modules.
//
// They are moved to separate package to prevent circular dependencies.
// Interfaces are placed here to prevent circular dependencies.
//
// Each interface required by maddy for operation is provided by some object
// called "module". This includes authentication, storage backends, DKIM,