Finition de la base de donnée

This commit is contained in:
ETHEVE Fabien
2023-02-06 16:15:11 +01:00
parent c3d6e4423d
commit 7108d33322
10 changed files with 101 additions and 6 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ import { PrismaClient } from "@prisma/client";
import createError from "http-errors"
import jeux from './route/jeux.js'
import groupe from './route/groupe.js'
const app = express()
app.use(express.json())
@@ -13,7 +13,7 @@ const port = 3500
app.use('/',jeux)
app.use('/',groupe)
// run the server
app.listen(port, () => {