func NewPetstore() (http.Handler, error)
NewPetstore creates a new petstore api handler
Pet the pet model
type Pet struct { ID int64 `json:"id"` Name string `json:"name"` PhotoURLs []string `json:"photoUrls,omitempty"` Status string `json:"status,omitempty"` Tags []Tag `json:"tags,omitempty"` }
Tag the tag model
type Tag struct { ID int64 Name string }