rustapi
sqlx database setup
DATABASE_URL=sqlite:users.db
curl http://localhost:8080/users
curl http://localhost:8080/users/1
curl -X POST http://localhost:8080/users \
-H "Content-Type: application/json" \
-d '{
"username": "drei",
"email": "drei@example.com"
}'
curl -X DELETE http://localhost:8080/users/1