fix: remove .js extensions from local imports
This commit is contained in:
parent
66eea4922e
commit
4cccaeb488
1 changed files with 9 additions and 9 deletions
18
server.ts
18
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");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue