12 lines
164 B
Go
12 lines
164 B
Go
package middleware
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/justinas/nosurf"
|
|
)
|
|
|
|
func (m *middleware) NoSurf(next http.Handler) http.Handler {
|
|
return nosurf.New(next)
|
|
}
|