Skip to content

library to build REST based Web Services using Google Go

License

Notifications You must be signed in to change notification settings

andyb/go-restful

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-restful

package for building REST-style Web Services using Google Go

REST asks developers to use HTTP methods explicitly and in a way that's consistent with the protocol definition. This basic REST design principle establishes a one-to-one mapping between create, read, update, and delete (CRUD) operations and HTTP methods. According to this mapping:

  • GET = Retrieve
  • POST = Create if you are sending a command to the server to create a subordinate of the specified resource, using some server-side algorithm.
  • POST = Update if you are requesting the server to update one or more subordinates of the specified resource.
  • PUT = Create iff you are sending the full content of the specified resource (URL).
  • PUT = Update iff you are updating the full content of the specified resource.
  • DELETE = Delete if you are requesting the server to delete the resource
  • PATCH = Update partial content of a resource

Resources

Build Status

(c) 2012+, http://ernestmicklei.com. MIT License

About

library to build REST based Web Services using Google Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published