index.tsx left out of prev commit

This commit is contained in:
OrbanGergo 2026-08-01 16:31:27 +03:00
parent ffddc284f2
commit e0929b6fe9
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import { root } from "./pages/root";
import { upload } from "./pages/upload";
import { user } from "./pages/user";
import { healthcheck } from "./pages/healthcheck";
import { convertSources } from "./pages/convertSources";
export const uploadsDir = "./data/uploads/";
export const outputDir = "./data/output/";
@ -50,6 +51,7 @@ const app = new Elysia({
.use(listConverters)
.use(chooseConverter)
.use(healthcheck)
.use(convertSources)
.onError(({ error }) => {
console.error(error);
});