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 19:28:07 +00:00
|
|
|
|
2026-06-11 14:32:55 -04:00
|
|
|
export const routeList = [echo, getAuthor, room, getGame];
|
2023-10-29 19:28:07 +00:00
|
|
|
|
2026-06-10 21:47:30 -04:00
|
|
|
export type RouteList = typeof routeList;
|