Skip to content

Commit

Permalink
Merge pull request #6 from speakeasy-api/retries_includes_post
Browse files Browse the repository at this point in the history
feat: retries includes post
  • Loading branch information
ryan-timothy-albert authored Feb 9, 2024
2 parents f4a87b4 + 454eee8 commit 248e4ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
r.HandleFunc("/pagination/limitoffset/page", pagination.HandleLimitOffsetPage).Methods(http.MethodGet, http.MethodPut)
r.HandleFunc("/pagination/limitoffset/offset", pagination.HandleLimitOffsetOffset).Methods(http.MethodGet, http.MethodPut)
r.HandleFunc("/pagination/cursor", pagination.HandleCursor).Methods(http.MethodGet, http.MethodPut)
r.HandleFunc("/retries", retries.HandleRetries).Methods(http.MethodGet)
r.HandleFunc("/retries", retries.HandleRetries).Methods(http.MethodGet, http.MethodPost)
r.HandleFunc("/errors/{status_code}", errors.HandleErrors).Methods(http.MethodGet)
r.HandleFunc("/optional", acceptHeaders.HandleAcceptHeaderMultiplexing).Methods(http.MethodGet)
r.HandleFunc("/readonlyorwriteonly", readonlywriteonly.HandleReadOrWrite).Methods(http.MethodPost)
Expand Down

0 comments on commit 248e4ef

Please sign in to comment.