🎉 - First commit!

This commit is contained in:
Florian Sylvain
2022-11-10 10:52:29 +01:00
commit d4fda082c1
11 changed files with 1267 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import express from 'express'
export const usersRouter = express.Router()
usersRouter.get('/', function(req, res, next) {
res.send({message:"voila tes users"})
})