Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
p4tin committed Jul 14, 2019
2 parents 86b3a46 + be178e3 commit fc6310d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/router/router.go
Expand Up @@ -18,11 +18,11 @@ func New() http.Handler {
r := mux.NewRouter()

r.HandleFunc("/", actionHandler).Methods("GET", "POST")
r.HandleFunc("/health", health).Methods("GET")
r.HandleFunc("/{account}", actionHandler).Methods("GET", "POST")
r.HandleFunc("/queue/{queueName}", actionHandler).Methods("GET", "POST")
r.HandleFunc("/{account}/{queueName}", actionHandler).Methods("GET", "POST")
r.HandleFunc("/SimpleNotificationService/{id}.pem", pemHandler).Methods("GET")
r.HandleFunc("/health", health).Methods("GET")

return r
}
Expand Down

0 comments on commit fc6310d

Please sign in to comment.