SimpleRESTApi
This is application for Book Keeping which implements fully-fledged REST API #We are using Gorilla Mux
In total, there are 5 end points.
- /book/ - POST - Creates a book
- /book/ - GET - Fetches all books
- /book/{bookId} - GET - Fetches book by id
- /book/{bookId} - PUT - Updates book by id
- /book/{bookId} - DELETE - Deletes book by id
Book Model:
name string author string publication string