Password Generator finished and working

This commit is contained in:
DomenikW 2025-02-19 16:15:27 +01:00
parent e348ea2aa9
commit 5930e8764d
5 changed files with 235 additions and 1 deletions

View file

@ -3,6 +3,7 @@ import cors from "@fastify/cors";
import multipart from "@fastify/multipart";
import { libreConvert } from "./src/routes/libreconvert.route";
import { colorConvert } from "./src/routes/colorconvert.route";
import {passwordGenerate} from "./src/routes/passwordgenerate.route";
const app = Fastify({ logger: true });
@ -10,6 +11,7 @@ app.register(cors, { origin: "*", exposedHeaders: 'Content-Disposition' });
app.register(multipart);
app.register(libreConvert);
app.register(colorConvert);
app.register(passwordGenerate);
const PORT = process.env.PORT || 4000;
app.listen({ port: Number(PORT), host: "0.0.0.0" }, () => {