Files
web-tools/src/lib/tools.ts
Snowykami c133d1bbfe
All checks were successful
Build and Push Container Image, Deploy to Host / build-and-push-and-deploy (push) Successful in 2m52s
feat: 移除 JSON 格式化页面,更新 MTR 表单和工具列表
2025-08-14 01:39:58 +08:00

14 lines
229 B
TypeScript

export interface Tool {
title: string;
description: string;
href: string;
}
export const tools: Tool[] = [
{
title: "Rail Transit Guide",
description: "轨道交通导视生成器",
href: "/rt-guide",
}
];