venom/base/module.base.php
versustunez 21977588d8 - cleaned up some code
- added DataLoader
- added assetDir
- splitted modules and controller namespace
2020-09-20 17:15:20 +02:00

9 lines
273 B
PHP
Executable file

<?php
//register modules -> need to have the Module Class at parent with the init function ;)
$modules = [];
// register controllers that can handle templates ;) need to have a render function for this
$controllers = [
'test' => \Controllers\TestController::class,
];