revert it for now

This commit is contained in:
cutestnekoaqua 2023-02-11 00:19:43 +01:00
parent 1b3308bd4b
commit 0f928bfb23

View File

@ -55,10 +55,6 @@ app.use(
}),
);
app.use(
upload.any()
);
// Init router
const router = new Router();
@ -71,6 +67,7 @@ for (const endpoint of [...endpoints, ...compatibility]) {
if (endpoint.meta.requireFile) {
router.post(
`/${endpoint.name}`,
upload.single("file"),
handler.bind(null, endpoint),
);
} else {