调整接口

This commit is contained in:
2020-11-04 14:42:27 +08:00
parent a8852873d2
commit 102b7e1846
7 changed files with 2220 additions and 1574 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Api\Controllers;
class IndexController extends Controller
{
public function index()
{
return $this->respond('200', [
'code' => 200,
'message' => 'Json Api is ready',
]);
}
}