This commit is contained in:
knowpia
2022-09-09 11:41:37 +08:00
parent 0f9d6ded79
commit c4f81816b4
4 changed files with 17 additions and 0 deletions

View File

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

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

@@ -0,0 +1,12 @@
<?php
namespace app\controller;
use think\facade\View;
class Pay
{
public function index()
{
return View::fetch();
}
}