2020-03-28 20:11:51 +01:00
|
|
|
<?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
|
2020-04-03 13:19:26 +02:00
|
|
|
$controllers = [
|
2020-05-31 17:00:05 +02:00
|
|
|
'test' => \Modules\TestController::class,
|
|
|
|
//api-controller
|
|
|
|
'apiMailer' => \Modules\API\APIMailer::class,
|
2020-04-03 13:19:26 +02:00
|
|
|
];
|