picobook/src/server/routelist.ts

9 lines
164 B
TypeScript
Raw Normal View History

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