Backend for debttracker
curl -X POST -H "Content-Type: application/json" -d '{"email": "ae@aeternam.com", "password": "password123"}' http://localhost:8080/api/registercurl -X POST -H "Content-Type: application/json" -d '{"email": "ae@aeternam.com", "password": "password123"}' http://localhost:8080/api/login
sqlite3 debttracker.db
#Displays the info of the table
.schema users
SELECT * FROM users;