wip version of the api

This commit is contained in:
lila 2026-04-05 00:33:34 +02:00
parent c24967dc74
commit 7d80b20390
8 changed files with 61 additions and 3 deletions

View file

@ -0,0 +1,9 @@
import express from "express";
import { Router } from "express";
import { healthRouter } from "./healthRouter.js";
import { gameRouter } from "./gameRouter.js";
export const apiRouter: Router = express.Router();
apiRouter.use("/health", healthRouter);
apiRouter.use("/game", gameRouter);