scaffolding

This commit is contained in:
2024-11-12 16:22:30 +02:00
parent 7180cfeb7f
commit c2245d92b3
9 changed files with 345 additions and 2 deletions
@@ -0,0 +1,13 @@
import express from 'express';
class GamesController{
name = 'gamesApi'
route = '/api/game'
init(app){
const router = express.Router();
}
}
export { GamesController }