From e2f54f4352db2a14fd911c7855e38f67554d2675 Mon Sep 17 00:00:00 2001 From: Ekuma Matthew <79433184+ekumamatthew@users.noreply.github.com> Date: Fri, 10 Jan 2025 17:42:05 +0100 Subject: [PATCH] Update net_http_mux.go, removed unused imports --- net_http_mux.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/net_http_mux.go b/net_http_mux.go index 0b1b9534..1ece8cbe 100644 --- a/net_http_mux.go +++ b/net_http_mux.go @@ -6,8 +6,6 @@ import ( "reflect" "runtime" "strings" - - "github.com/getkin/kin-openapi/openapi3" ) // Group allows grouping routes under a common path. @@ -228,4 +226,4 @@ var _ Registerer[string, any] = netHttpRouteRegisterer[string, any]{} func (a netHttpRouteRegisterer[T, B]) Register() Route[T, B] { return *Register(a.s, a.route, a.controller) -} \ No newline at end of file +}