Privacy.php 167 B

12345678910111213
  1. <?php
  2. namespace app\api\controller;
  3. use think\Controller;
  4. class Privacy extends Controller
  5. {
  6. public function privacy(){
  7. return $this->fetch();
  8. }
  9. }