Simple RESTful API to create, read, update and delete books. No database implementation yet
# Install mux router
go get -u github.com/gorilla/muxgo build
./go_restapiGET api/booksGET api/books/{id}DELETE api/books/{id}POST api/books
# Request sample
# {
# "isbn":"4545454",
# "title":"Book Three",
# "author":{"firstname":"Harry", "lastname":"White"}
# }PUT api/books/{id}
# Request sample
# {
# "isbn":"4545454",
# "title":"Updated Title",
# "author":{"firstname":"Harry", "lastname":"White"}
# }