NEED_LOGIN code add

This commit is contained in:
knowpia
2022-09-08 17:23:45 +08:00
parent 5f982d62ce
commit 4f6026dbff
5 changed files with 23 additions and 11 deletions

12
app/controller/Index.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace app\controller;
use app\BaseController;
class Index extends BaseController
{
public function index()
{
return 'Api is ready!';
}
}