diff --git a/ocis-pkg/service/http/option.go b/ocis-pkg/service/http/option.go index e61c46490..a88062389 100644 --- a/ocis-pkg/service/http/option.go +++ b/ocis-pkg/service/http/option.go @@ -93,10 +93,3 @@ func TLSConfig(config *tls.Config) Option { o.TLSConfig = config } } - -// Handler sets the http handler for the service -func Handler(h http.Handler) Option { - return func(o *Options) { - o.Handler = h - } -}