Index.php 191 B

12345678910111213141516
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. class Index extends Api
  5. {
  6. public function index()
  7. {
  8. return json(['code' => 0]);
  9. }
  10. }