fix: format

This commit is contained in:
Gabriellvl 2025-02-26 20:29:53 +01:00
parent ab17e982c7
commit cfaae9ebe4
4 changed files with 185 additions and 104 deletions

View file

@ -1,7 +1,6 @@
import express, { Express, Response } from 'express';
import initORM from './orm.js';
import themeRoutes from "./routes/themes.js";
import themeRoutes from './routes/themes.js';
const app: Express = express();
const port: string | number = process.env.PORT || 3000;
@ -13,8 +12,7 @@ app.get('/', (_, res: Response) => {
});
});
app.use("/theme", themeRoutes);
app.use('/theme', themeRoutes);
async function startServer() {
await initORM();