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

12 lines
140 B
PHP

<?php
namespace app\controller;
use think\facade\View;
class Pay
{
public function index()
{
return View::fetch();
}
}