add webhook endpoint

This commit is contained in:
dylan
2023-10-29 17:54:20 -07:00
parent cfdfb449f0
commit c55a9e8b98
2 changed files with 21 additions and 0 deletions
+2
View File
@@ -1,7 +1,9 @@
import echo from "./api/echo.ts";
import webhook from "./api/webhook.ts";
export const routeList = [
echo,
webhook,
];
export type RouteList = typeof routeList;