24 lines
871 B
Plaintext
24 lines
871 B
Plaintext
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CatchAdmin [Just Like ~ ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||
// +----------------------------------------------------------------------
|
||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace {NAMESPACE};
|
||
|
||
use catcher\ModuleService;
|
||
|
||
class {SERVICE} extends ModuleService
|
||
{
|
||
public function loadRouteFrom()
|
||
{
|
||
// TODO: Implement loadRouteFrom() method.
|
||
return __DIR__ . DIRECTORY_SEPARATOR . 'route.php';
|
||
}
|
||
}
|