fix: fix mssing feed routes
This commit is contained in:
parent
014473a7ac
commit
aeba1b6f1c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user