mirror of
https://github.com/opensupports/opensupports.git
synced 2025-09-26 11:29:05 +02:00
9 lines
233 B
PHP
9 lines
233 B
PHP
<?php
|
|
require_once 'staff/get.php';
|
|
|
|
$systemControllerGroup = new ControllerGroup();
|
|
$systemControllerGroup->setGroupPath('/staff');
|
|
|
|
$systemControllerGroup->addController(new GetStaffController);
|
|
|
|
$systemControllerGroup->finalize(); |