Merge branch 'main' into feat/video-to-audio

This commit is contained in:
Theo Leuthardt 2025-02-23 13:15:26 +01:00 committed by GitHub
commit 7494e89661
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 200 additions and 0 deletions

View file

@ -9,6 +9,7 @@ import { tmzConvert } from "./src/routes/tmzconvert.route";
import { generateQRCode } from "./src/routes/generateqrcode.route";
import { wordCounter } from "./src/routes/wordcounter.route";
import { videoToAudio } from "./src/routes/videotoaudio.route";
import { removeBG } from "./src/routes/removebg.route";
const app = Fastify({ logger: true });
@ -27,6 +28,7 @@ app.register(tmzConvert);
app.register(generateQRCode);
app.register(wordCounter);
app.register(videoToAudio);
app.register(removeBG);
const PORT = process.env.PORT || 4000;
app.listen({ port: Number(PORT), host: "0.0.0.0" }, () => {