This commit is contained in:
2025-07-10 23:55:26 +08:00
commit f140c92ddd
1840 changed files with 184740 additions and 0 deletions

9
static/index.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
header("Access-Control-Allow-Origin: *");
header('Content-type: application/json');
$json = array(
"code"=>0,
"msg"=>"succ"
);
exit(json_encode($json,JSON_UNESCAPED_UNICODE));
?>