feat: backend side of timezone convert, new route created for using luxon to convert timezones

This commit is contained in:
theoleuthardt 2025-02-20 22:03:51 +01:00
parent ab601b53fe
commit 2d53cb0017
4 changed files with 69 additions and 2 deletions

View file

@ -5,6 +5,7 @@ import { libreConvert } from "./src/routes/libreconvert.route";
import { colorConvert } from "./src/routes/colorconvert.route";
import { passwordGenerate } from "./src/routes/passwordgenerate.route";
import { regexTest } from "./src/routes/regextest.route";
import { tmzConvert } from "./src/routes/tmzconvert.route";
const app = Fastify({ logger: true });
@ -19,6 +20,7 @@ app.register(libreConvert);
app.register(colorConvert);
app.register(passwordGenerate);
app.register(regexTest);
app.register(tmzConvert);
const PORT = process.env.PORT || 4000;
app.listen({ port: Number(PORT), host: "0.0.0.0" }, () => {