mirror of
https://github.com/snowykami/web-tools.git
synced 2025-09-05 08:16:24 +00:00
All checks were successful
Build and Push Container Image, Deploy to Host / build-and-push-and-deploy (push) Successful in 2m52s
14 lines
229 B
TypeScript
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",
|
|
}
|
|
];
|