added the games route and two test game sub-routes for colyseus testing.

This commit is contained in:
HP
2026-01-16 21:12:54 -05:00
parent e3141030ab
commit ff6eb30f96
8 changed files with 580 additions and 5 deletions

12
src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
export interface Env {
DB_STRING?: string;
SERVER_URL?: string;
TIX_TAX_ROOM_NAME?: string;
}
declare global {
namespace NodeJS{
interface ProcessEnv extends Env {}
}
}