Container holds all modules registered.
| 11 | |
| 12 | // Container holds all modules registered. |
| 13 | type Container struct { |
| 14 | modules []interface{} |
| 15 | } |
| 16 | |
| 17 | // Modules returns all modules in the container. This method is used to scan for |
| 18 | // custom interfaces. For example, The database module use Modules to scan for |
nothing calls this directly
no outgoing calls
no test coverage detected