9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import echo from "./api/echo.ts";
|
|
import webhook from "./api/webhook.ts";
|
|
|
|
export const routeList = [
|
|
echo,
|
|
webhook,
|
|
];
|
|
|
|
export type RouteList = typeof routeList; |