Files
heping-api/app/controller/Index.php
2022-09-09 11:41:37 +08:00

15 lines
171 B
PHP

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