fix(assets): missing closing }); on POST / route (syntax error)

This commit is contained in:
Zac Gaetano 2026-05-26 15:05:50 +00:00
parent 07f8ffa6d5
commit 5edb4df35a

View file

@ -205,6 +205,7 @@ router.post('/', async (req, res, next) => {
}
next(err);
}
});
// POST /cleanup-live
router.post('/cleanup-live', async (req, res, next) => {