1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/routes/webhooks/#webhook_id/#webhook_token/github.ts b/src/api/routes/webhooks/#webhook_id/#webhook_token/github.ts
index 140d3618..ac0b7c35 100644
--- a/src/api/routes/webhooks/#webhook_id/#webhook_token/github.ts
+++ b/src/api/routes/webhooks/#webhook_id/#webhook_token/github.ts
@@ -1,6 +1,7 @@
import { NextFunction, Request, Response, Router } from "express";
import { HTTPError } from "lambert-server/HTTPError";
-import { getProxyUrl, route } from "@spacebar/api/util";
+import { getProxyUrl } from "@spacebar/api/util";
+import { route } from "@spacebar/api/middlewares";
import { EmbedType, WebhookExecuteSchema } from "@spacebar/schemas";
import { executeWebhook } from "../../../../util/handlers/Webhook";
|