diff options
Diffstat (limited to 'http/http.go')
-rw-r--r-- | http/http.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/http/http.go b/http/http.go index 063c1e8..71075a7 100644 --- a/http/http.go +++ b/http/http.go @@ -2,12 +2,15 @@ package http import ( "context" + "errors" "fmt" - "go.sudomsg.com/kit/logging" - "golang.org/x/sync/errgroup" "log/slog" "net" "net/http" + "time" + + "go.sudomsg.com/kit/logging" + "golang.org/x/sync/errgroup" ) // RunHTTPServers runs HTTP servers concurrently on all provided listeners. |