mirror of
https://github.com/opensupports/opensupports.git
synced 2025-09-26 19:38:54 +02:00
9 lines
249 B
PHP
9 lines
249 B
PHP
<?php
|
|
require_once 'system/init-settings.php';
|
|
|
|
$systemControllerGroup = new ControllerGroup();
|
|
$systemControllerGroup->setGroupPath('/system');
|
|
|
|
$systemControllerGroup->addController(new InitSettingsController);
|
|
|
|
$systemControllerGroup->finalize(); |