initial upload

This commit is contained in:
Kai Waggeling 2025-05-17 16:20:29 +02:00
parent 987c99d00b
commit bb6c0147db
44 changed files with 1884 additions and 131 deletions

6
routes/master.mjs Normal file
View file

@ -0,0 +1,6 @@
export const get = async (request, response) => {
if (request.method !== "GET") return response.status(405)
response.render(`ui/master.njk`);
}