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