Skip to content

Commit 6ce0dec

Browse files
committed
Imports
1 parent 139c309 commit 6ce0dec

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

cli/appsecuritykey.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ import (
44
"database/sql"
55
"fmt"
66

7+
"golang.org/x/xerrors"
8+
79
"github.com/coder/coder/cli/clibase"
810
"github.com/coder/coder/coderd/database"
911
"github.com/coder/coder/coderd/database/migrations"
10-
"golang.org/x/xerrors"
1112
)
1213

1314
func (*RootCmd) appSecurityKey() *clibase.Cmd {

enterprise/cli/workspaceproxy.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ import (
1717

1818
"golang.org/x/xerrors"
1919

20+
"github.com/coreos/go-systemd/daemon"
21+
"github.com/prometheus/client_golang/prometheus"
22+
"github.com/prometheus/client_golang/prometheus/collectors"
23+
"github.com/prometheus/client_golang/prometheus/promhttp"
24+
2025
"github.com/coder/coder/cli"
2126
"github.com/coder/coder/cli/clibase"
2227
"github.com/coder/coder/cli/cliui"
@@ -25,10 +30,6 @@ import (
2530
"github.com/coder/coder/coderd/workspaceapps"
2631
"github.com/coder/coder/codersdk"
2732
"github.com/coder/coder/enterprise/wsproxy"
28-
"github.com/coreos/go-systemd/daemon"
29-
"github.com/prometheus/client_golang/prometheus"
30-
"github.com/prometheus/client_golang/prometheus/collectors"
31-
"github.com/prometheus/client_golang/prometheus/promhttp"
3233
)
3334

3435
func (r *RootCmd) workspaceProxy() *clibase.Cmd {

0 commit comments

Comments
 (0)