You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
389 B
Smarty
20 lines
389 B
Smarty
package middleware
|
|
|
|
import "net/http"
|
|
|
|
type {{.name}} struct {
|
|
}
|
|
|
|
func New{{.name}}() *{{.name}} {
|
|
return &{{.name}}{}
|
|
}
|
|
|
|
func (m *{{.name}})Handle(next http.HandlerFunc) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
// TODO generate middleware implement function, delete after code implementation
|
|
|
|
// Passthrough to next handler if need
|
|
next(w, r)
|
|
}
|
|
}
|