Skip to content

Commit fe70221

Browse files
committed
Import order
1 parent 66c1b13 commit fe70221

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

cli/server.go

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,14 @@ import (
3333
"sync/atomic"
3434
"time"
3535

36-
"github.com/prometheus/client_golang/prometheus/collectors"
37-
"github.com/prometheus/client_golang/prometheus/promhttp"
38-
3936
"github.com/coreos/go-oidc/v3/oidc"
4037
"github.com/coreos/go-systemd/daemon"
4138
embeddedpostgres "github.com/fergusstrange/embedded-postgres"
4239
"github.com/google/go-github/v43/github"
4340
"github.com/google/uuid"
4441
"github.com/prometheus/client_golang/prometheus"
42+
"github.com/prometheus/client_golang/prometheus/collectors"
43+
"github.com/prometheus/client_golang/prometheus/promhttp"
4544
"github.com/spf13/afero"
4645
"go.opentelemetry.io/otel/trace"
4746
"golang.org/x/mod/semver"
@@ -236,8 +235,8 @@ func (r *RootCmd) Server(newAPI func(context.Context, *coderd.Options) (*coderd.
236235
}()
237236
}
238237

239-
//If the access URL is empty, we attempt to run a reverse-proxy
240-
//tunnel to make the initial setup really simple.
238+
// If the access URL is empty, we attempt to run a reverse-proxy
239+
// tunnel to make the initial setup really simple.
241240
var (
242241
tunnel *tunnelsdk.Tunnel
243242
tunnelDone <-chan struct{} = make(chan struct{}, 1)

0 commit comments

Comments
 (0)