feat: 添加管理页面

- 静态页面支持
- 创建 Key、上传、下载、删除文件
This commit is contained in:
Cuishibing
2026-04-25 23:19:38 +08:00
parent bd0c22cd73
commit fdae636637
2 changed files with 213 additions and 0 deletions

View File

@@ -7,6 +7,8 @@ const path = require('path');
const app = express();
app.use(express.json());
app.use(express.static('public'));
const routes = require('./routes');
app.use('/api', routes);