Merge pull request #12 from theoleuthardt/feat/password-generator

feat: Password Generator finished and working
This commit is contained in:
AurionTex 2025-02-19 16:26:41 +01:00 committed by GitHub
commit bbcfcddedf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 });
@ -15,6 +16,7 @@ app.register(cors, {
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" }, () => {