From aeba1b6f1c1d663dd590eaf51eb809c77e0ab34e Mon Sep 17 00:00:00 2001 From: Steve Korshakov Date: Sat, 20 Sep 2025 22:26:42 -0700 Subject: [PATCH] fix: fix mssing feed routes --- sources/app/api/api.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sources/app/api/api.ts b/sources/app/api/api.ts index b02943f..248350a 100644 --- a/sources/app/api/api.ts +++ b/sources/app/api/api.ts @@ -19,6 +19,7 @@ import { enableMonitoring } from "./utils/enableMonitoring"; import { enableErrorHandlers } from "./utils/enableErrorHandlers"; import { enableAuthentication } from "./utils/enableAuthentication"; import { userRoutes } from "./routes/userRoutes"; +import { feedRoutes } from "./routes/feedRoutes"; export async function startApi() { @@ -62,6 +63,7 @@ export async function startApi() { versionRoutes(typed); voiceRoutes(typed); userRoutes(typed); + feedRoutes(typed); // Start HTTP const port = process.env.PORT ? parseInt(process.env.PORT, 10) : 3005;