26 lines
977 B
PHP
26 lines
977 B
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Catch-CMS Design On 2020
|
||
// +----------------------------------------------------------------------
|
||
// | CatchAdmin [Just Like ~ ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||
// +----------------------------------------------------------------------
|
||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace catchAdmin\cms;
|
||
|
||
use catcher\ModuleService;
|
||
|
||
class CmsService extends ModuleService
|
||
{
|
||
public function loadRouteFrom()
|
||
{
|
||
// TODO: Implement loadRouteFrom() method.
|
||
return __DIR__ . DIRECTORY_SEPARATOR . 'route.php';
|
||
}
|
||
}
|