【类 型】:fix

【主	题】:去除测试代码
【描	述】:
	[原因]:用来本地测试 经常修改 固不提交
	[过程]:
	[影响]:
【结	束】

# 类型 包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变动)
# refactor:重构(即不是新增功能,也不是修改bug的代码变动)
# test:增加测试
# chore:构建过程或辅助工具的变动
This commit is contained in:
tk 2024-06-25 13:24:05 +08:00
parent c95fdff204
commit b1285f0398
10 changed files with 1 additions and 35 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
# 忽略日志文件
*.log
/FlyCube/Runtime
Home

View File

@ -1 +0,0 @@

View File

@ -1,4 +0,0 @@
<?php
return array(
//'配置项'=>'配置值'
);

View File

@ -1 +0,0 @@

View File

@ -1,13 +0,0 @@
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller
{
public function index()
{
$this->display();
}
}

View File

@ -1 +0,0 @@

View File

@ -1 +0,0 @@

View File

@ -1 +0,0 @@

View File

@ -1,12 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>飞行魔方</title>
</head>
<body>
<div style="margin-top:50px;font-weight: bold;font-size: 90px;text-align: center;">Hello World</div>
</body>
</html>

View File

@ -1 +0,0 @@