chore: prepare backend

This commit is contained in:
2026-09-03 08:46:53 +02:00
parent 223478f7cc
commit c123673ca5
9 changed files with 161 additions and 42 deletions
+20
View File
@@ -0,0 +1,20 @@
import express from 'express';
import tracking from './tracking';
import update from './update';
const routes = ( app: express.Application ) => {
tracking.routes( app );
update.routes( app );
app.get( '/room/create', ( request: express.Request, response: express.Response ) => {
} );
app.get( '/room/:id/close', ( request: express.Request, response: express.Response ) => {
} );
};
export default {
routes
};