Files
picobook/src/server/routelist.ts
T

10 lines
304 B
TypeScript
Raw Normal View History

2023-10-29 19:28:07 +00:00
import echo from "./api/echo.ts";
2024-04-02 19:04:34 -07:00
import getAuthor from "./api/getAuthor.ts";
2026-06-10 21:47:30 -04:00
import getGame from "./api/getGame.ts";
2024-04-03 20:29:27 -07:00
import room from "./api/room.ts";
2023-10-29 17:54:20 -07:00
import webhook from "./api/webhook.ts";
2023-10-29 19:28:07 +00:00
2026-06-10 21:47:30 -04:00
export const routeList = [echo, webhook, getAuthor, room, getGame];
2023-10-29 19:28:07 +00:00
2026-06-10 21:47:30 -04:00
export type RouteList = typeof routeList;