The aim is to write a simple http server with methods to use a queue.
These methods should be implemented:
POST /queue/pop
- Should pop from the queue and return the pushed JSON object with an ID and created time addedPOST /queue/push
- Should submit a JSON object to the server and push it to the queue. The response should be a JSON object with the idGET /queue/count
Should return the size of the queue in a JSON object