Clean up 'import' ordering

This commit is contained in:
Bryan Boreham
2021-04-04 12:16:11 +01:00
parent 71c16505f1
commit f41b90a7d8
2 changed files with 2 additions and 3 deletions

View File

@@ -1,12 +1,11 @@
package app
import (
"context"
"net/http"
"net/url"
"time"
"context"
"github.com/gorilla/mux"
ot "github.com/opentracing/opentracing-go"
otlog "github.com/opentracing/opentracing-go/log"

View File

@@ -5,6 +5,6 @@
package report
import (
_ "github.com/peterbourgon/runsvinit"
_ "github.com/mjibson/esc"
_ "github.com/peterbourgon/runsvinit"
)