### Get all plants
GET http://localhost:8080/api/v1/plants
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJsdWthcy5rYXJzY2hAZ214LmRlIiwiaWF0IjoxNjk5ODczMDA4LCJleHAiOjE2OTk5NTk0MDh9.iU9gkWinFla3__ksuwLmKosevRXrrYlDdSQCPhNHxbM

### Create account
POST http://localhost:8080/api/v1/auth/register
content-type: application/json

{
  "email": "lukas.karsch@gmx.de",
  "firstname": "Lukas",
  "lastname": "Karsch",
  "password": "myPassword123"
}

### Authenticate
POST http://localhost:8080/api/v1/auth/authenticate
content-type: application/json

{
  "email": "lukas.karsch@gmx.de",
  "password": "12345678"
}

### Create account
POST http://localhost:8080/api/v1/auth/register
content-type: application/json

{
  "email": "hannah.zing@icloud.com",
  "firstname": "Hännah",
  "lastname": "Zink",
  "password": "hhh"
}