11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import { Router } from "express";
|
|
const router = Router();
|
|
|
|
import games from "./games.route";
|
|
import auth from "./auth.route";
|
|
|
|
router.use("/games", games);
|
|
router.use("/auth", auth);
|
|
|
|
export default router;
|