Files
picobook/src/server/routelist.ts
T
2026-06-11 14:32:55 -04:00

9 lines
255 B
TypeScript

import echo from "./api/echo.ts";
import getAuthor from "./api/getAuthor.ts";
import getGame from "./api/getGame.ts";
import room from "./api/room.ts";
export const routeList = [echo, getAuthor, room, getGame];
export type RouteList = typeof routeList;