venom/base/module.base.php
Maurice Grönwoldt c33bb4cb3a rework structure
added Router
added .htaccess
removed API-Module => is not used
renamed batch to CRON
2020-09-10 22:47:58 +02:00

9 lines
269 B
PHP

<?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' => \Modules\TestController::class,
];