curl --data '{"name": "New Item"}' http://localhost:8000/api/create -H 'content-type:application/json'
curl -H 'content-type:application/json' http://localhost:8000/api/read
curl -X 'PUT' --data '{"name": "Updated item"}' http://localhost:8000/api/update/1 -H 'content-type:application/json'
curl -X 'DELETE' http://localhost:8000/api/delete/2 -H 'content-type:application/json'