13 lines
253 B
PHP
Raw Normal View History

<?php
namespace catchAdmin\cms\controller;
use catcher\base\CatchController;
use catcher\CatchResponse;
class TestController extends CatchController
{
public function index()
{
return CatchResponse::success('Hello CatchAdmin');
}
}