2020-03-28 20:11:51 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
//register modules -> need to have the Module Class at parent with the init function ;)
|
2020-12-06 12:30:12 +01:00
|
|
|
$modules = [];
|
2020-03-28 20:11:51 +01:00
|
|
|
|
|
|
|
// register controllers that can handle templates ;) need to have a render function for this
|
2020-04-03 13:19:26 +02:00
|
|
|
$controllers = [
|
2020-09-20 17:15:20 +02:00
|
|
|
'test' => \Controllers\TestController::class,
|
2020-04-03 13:19:26 +02:00
|
|
|
];
|