Application provide API for CRUD "famous quotes".
API looks like:
GET
/authors/{id}
- Retrieve author by specified idGET
/quotes
- List of all quotesGET
/quotes/random
- Retrieve 1 random quoteGET
/quotes/{id}
- Retrieve quote by specified idPOST
/quotes
- Create new quotePUT
/quotes/{id}
- Update quote by specified idDELETE
/quotes/{id}
- Delete quote by specified id
Auth handled with basic auth