sort imports

This commit is contained in:
ajatprabha 2021-09-30 23:58:45 +05:30 committed by Ken Hibino
parent f3efe59a1d
commit 796d3c089c
2 changed files with 3 additions and 2 deletions

View File

@ -5,13 +5,13 @@ import (
"embed" "embed"
"flag" "flag"
"fmt" "fmt"
"github.com/gorilla/mux"
"log" "log"
"net/http" "net/http"
"strings" "strings"
"time" "time"
"github.com/go-redis/redis/v8" "github.com/go-redis/redis/v8"
"github.com/gorilla/mux"
"github.com/rs/cors" "github.com/rs/cors"
"github.com/hibiken/asynq" "github.com/hibiken/asynq"

View File

@ -1,9 +1,10 @@
package asynqmon package asynqmon
import ( import (
"net/http"
"github.com/go-redis/redis/v8" "github.com/go-redis/redis/v8"
"github.com/gorilla/mux" "github.com/gorilla/mux"
"net/http"
"github.com/hibiken/asynq" "github.com/hibiken/asynq"
) )