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