Simple RESTful to create, read, update and delete books. No database implementation yet
# Install mux router
go get -u github.com/gorilla/mux
go run main.go
GET /books
GET /books/{id}
GET /books/1
DELETE /books/{id}
POST /books
# Request sample
# {
# "isbn":"4545454",
# "title":"Book Three",
# "author":{"firstname":"Harry", "lastname":"White"}
# }
PUT /books/{id}
# Request sample
# {
# "isbn":"4545454",
# "title":"Updated Title",
# "author":{"firstname":"Harry", "lastname":"White"}
# }
## App Info
### Version
1.0.0
### License
This project is licensed under the MIT License