14 lines
259 B
Plaintext
Raw Normal View History

2019-12-18 18:54:01 +08:00
<?php
namespace {NAMESPACE};
2020-06-25 09:25:02 +08:00
use catcher\ModuleService;
2019-12-18 18:54:01 +08:00
2020-06-25 09:25:02 +08:00
class {SERVICE} extends ModuleService
2019-12-18 18:54:01 +08:00
{
2020-06-25 09:25:02 +08:00
public function loadRouteFrom()
{
// TODO: Implement loadRouteFrom() method.
return __DIR__ . DIRECTORY_SEPARATOR . 'route.php';
}
2019-12-18 18:54:01 +08:00
}