Files
heping-api/app/controller/Index.php
2022-09-08 17:23:45 +08:00

13 lines
169 B
PHP

<?php
namespace app\controller;
use app\BaseController;
class Index extends BaseController
{
public function index()
{
return 'Api is ready!';
}
}