feat: upload
Some checks failed
coverage CI / build (push) Has been cancelled

This commit is contained in:
2025-09-25 13:51:24 +08:00
parent 88097e386b
commit 4e9ebc76f7
12 changed files with 687 additions and 165 deletions

14
mock/ap.ts Normal file
View File

@@ -0,0 +1,14 @@
import type { Request, Response } from "express";
import mockjs from "mockjs";
const getTags = (_: Request, res: Response) => {
return res.json({
data: mockjs.mock({
"list|100": [{ name: "@city", "value|1-100": 150, "type|0-2": 1 }],
}),
});
};
export default {
"GET /api/tags": getTags,
};