mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
Merge branch 'main' into feat/video-to-audio
This commit is contained in:
commit
7494e89661
5 changed files with 200 additions and 0 deletions
|
|
@ -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" }, () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue