func (h *ScansHandler) Interceptors() handy.InterceptorChain { return handy.NewInterceptorChain(). Chain(new(interceptor.Permission)). Chain(interceptor.NewValidator(h)). Chain(interceptor.NewDatabase(h)). Chain(interceptor.NewJSONCodec(h)). Chain(interceptor.NewHTTPCacheAfter(h)) }
func (h *DomainVerificationHandler) Interceptors() handy.InterceptorChain { return handy.NewInterceptorChain(). Chain(new(interceptor.Permission)). Chain(interceptor.NewFQDN(h)). Chain(interceptor.NewValidator(h)). Chain(interceptor.NewDatabase(h)). Chain(interceptor.NewJSONCodec(h)) }