diff --git a/cmd/asynqmon/main.go b/cmd/asynqmon/main.go index 0325d36..165ff53 100644 --- a/cmd/asynqmon/main.go +++ b/cmd/asynqmon/main.go @@ -5,13 +5,13 @@ import ( "embed" "flag" "fmt" - "github.com/gorilla/mux" "log" "net/http" "strings" "time" "github.com/go-redis/redis/v8" + "github.com/gorilla/mux" "github.com/rs/cors" "github.com/hibiken/asynq" diff --git a/handler.go b/handler.go index 540cb32..b142e16 100644 --- a/handler.go +++ b/handler.go @@ -1,9 +1,10 @@ package asynqmon import ( + "net/http" + "github.com/go-redis/redis/v8" "github.com/gorilla/mux" - "net/http" "github.com/hibiken/asynq" )