diff --git a/server.ts b/server.ts index 3402fe9..9161d60 100644 --- a/server.ts +++ b/server.ts @@ -5,15 +5,15 @@ * Git: git.wellspr.ing/wellspring/agentify-help */ import express from "express"; -import { pool } from "./db.js"; -import { registerAgentifyHelpRoutes } from "./routes/agentify-help.js"; -import { registerAgentifyRoutes } from "./routes/agentify.js"; -import { registerStage5Routes } from "./routes/stage5.js"; -import { registerSkillsAgentifyHelpRoutes } from "./routes/skills.js"; -import { registerCorpusRoutes } from "./routes/corpus.js"; -import { registerCorpusGatherRoutes } from "./routes/corpus-gather.js"; -import { registerPersonaForgeRoutes, initPersonaForge } from "./routes/personaforge.js"; -import { registerStewardRoutes, initStewardDash } from "./routes/steward.js"; +import { pool } from "./db"; +import { registerAgentifyHelpRoutes } from "./routes/agentify-help"; +import { registerAgentifyRoutes } from "./routes/agentify"; +import { registerStage5Routes } from "./routes/stage5"; +import { registerSkillsAgentifyHelpRoutes } from "./routes/skills"; +import { registerCorpusRoutes } from "./routes/corpus"; +import { registerCorpusGatherRoutes } from "./routes/corpus-gather"; +import { registerPersonaForgeRoutes, initPersonaForge } from "./routes/personaforge"; +import { registerStewardRoutes, initStewardDash } from "./routes/steward"; const app = express(); const PORT = parseInt(process.env.PORT || "3000");