package httpinvoce import ( "net/http" ) func (s Service) RegisterRoutes(mux *http.ServeMux) { mux.HandleFunc("POST /invoice", s.createInvoice) }