Initial commit

This commit is contained in:
2021-08-02 17:04:26 +02:00
commit fe1c8c4c15
15 changed files with 5058 additions and 0 deletions

21
test/request.rest Normal file
View File

@@ -0,0 +1,21 @@
GET http://localhost:3000/users
###
POST http://localhost:3000/users
Content-Type: application/json
{
"email": "kyle@kyle.de",
"password": "password"
}
###
POST http://localhost:3000/users/login
Content-Type: application/json
{
"username": "Kyle",
"password": "password1"
}