Implemented invitation logic. Implemented play list method. Mild refactoring.

This commit is contained in:
jd
2026-02-20 23:51:16 +00:00
parent 5742214115
commit 335f1821cd
24 changed files with 1118 additions and 166 deletions

View File

@@ -3,6 +3,7 @@ import user from './routes/user';
import player from './routes/player';
import game from './routes/game';
import { OkResponse } from './utilities/responseHelper';
import invite from './routes/invite';
const server = Bun.serve({
routes: {
@@ -10,6 +11,7 @@ const server = Bun.serve({
...user,
...player,
...game,
...invite,
'/test': {
GET: () => {
return new OkResponse();