move to public repo
This commit is contained in:
10
server/src/routes/index.ts
Normal file
10
server/src/routes/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user