9 lines
255 B
TypeScript
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;
|