fix: remove .js extensions from local imports

This commit is contained in:
gitadmin 2026-05-02 13:16:50 +00:00
parent 66eea4922e
commit 4cccaeb488

View file

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