Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:rog-golang-buddies/rapidmidiex into dev
Browse files Browse the repository at this point in the history
* 'dev' of github.com:rog-golang-buddies/rapidmidiex:
  inteface{} -> any
  • Loading branch information
harveysanders committed Sep 16, 2022
2 parents c717b7a + 9dc2b0c commit f2161e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func NewService(r chi.Router) *Service {
return s
}

func (s Service) respond(w http.ResponseWriter, r *http.Request, data interface{}, status int) {
func (s Service) respond(w http.ResponseWriter, r *http.Request, data any, status int) {
h.Respond(w, r, data, status)
}

Expand Down

0 comments on commit f2161e8

Please sign in to comment.