profile placeholder and auth router

This commit is contained in:
2026-05-22 21:11:51 -05:00
parent f7a923fd99
commit 73b051230f
8 changed files with 31 additions and 11 deletions
+2
View File
@@ -3,6 +3,7 @@ import express, { Response } from 'express';
import { articlesRouter } from './routes/articles.ts';
import { blocksRouter } from './routes/blocks.ts';
import { imagesRouter } from './routes/images.ts';
import { authRouter } from './routes/auth.ts';
const app = express();
app.use(express.json());
@@ -14,6 +15,7 @@ app.get("/status", (_, res: Response) => {
app.use("/articles", articlesRouter);
app.use("/blocks", blocksRouter);
app.use("/images", imagesRouter);
app.use("/auth", authRouter);
const port = process.env.PORT || 3000;