Files
tashow-manager/mock/notices.ts
wuxichen 4e9ebc76f7
Some checks failed
coverage CI / build (push) Has been cancelled
feat: upload
2025-09-25 13:51:24 +08:00

21 lines
471 B
TypeScript

import type { Request, Response } from "express";
const getSampleTag = (_req: Request, res: Response) => {
res.json({
data: [
{
id: "000000001",
avatar:
"https://mdn.alipayobjects.com/yuyan_qk0oxh/afts/img/MSbDR4FR2MUAAAAAAAAAAAAAFl94AQBr",
title: "你收到了 14 份新周报",
datetime: "2017-08-09",
type: "notification",
},
],
});
};
export default {
"GET /api/notices": getSampleTag,
};