This repository has been archived on 2021-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pingan_unionpay/app/Api/Controllers/IndexController.php
2020-11-04 14:42:27 +08:00

17 lines
253 B
PHP

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