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
+11
View File
@@ -0,0 +1,11 @@
import express from 'express';
const routes = ( app: express.Application ) => {
app.get( '/user/playlists', ( request: express.Request, response: express.Response ) => {
} );
app.post( '/user/playlists', ( request: express.Request, response: express.Response ) => {
} );
};