picobook/src/server/routelist.ts

7 lines
114 B
TypeScript
Raw Normal View History

2023-10-29 19:28:07 +00:00
import echo from "./api/echo.ts";
export const routeList = [
echo,
];
export type RouteList = typeof routeList;