Build 29035725

This commit is contained in:
Renan LE CARO 2025-03-16 17:45:29 +01:00
parent a1bf54af71
commit 819197031f
64 changed files with 3494 additions and 6921 deletions

View file

@ -9,9 +9,9 @@ app.use(bodyParser.text({
limit:'1MB'
}));
app.post('/src/levels.json', (req, res) => {
app.post('/src/data/levels.json', (req, res) => {
if(req.body?.trim()) {
fs.writeFileSync('src/levels.json', req.body)
fs.writeFileSync('src/data/levels.json', req.body)
}
res.end('OK')
})