feat(invoice): add send route
This commit is contained in:
9
internal/api/httpinvoce/routes.go
Normal file
9
internal/api/httpinvoce/routes.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package httpinvoce
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
func (s Service) RegisterRoutes(mux *http.ServeMux) {
|
||||
mux.HandleFunc("POST /invoice", s.createInvoice)
|
||||
}
|
||||
Reference in New Issue
Block a user