File tree 2 files changed +7
-5
lines changed 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ import (
4
4
"database/sql"
5
5
"fmt"
6
6
7
+ "golang.org/x/xerrors"
8
+
7
9
"github.com/coder/coder/cli/clibase"
8
10
"github.com/coder/coder/coderd/database"
9
11
"github.com/coder/coder/coderd/database/migrations"
10
- "golang.org/x/xerrors"
11
12
)
12
13
13
14
func (* RootCmd ) appSecurityKey () * clibase.Cmd {
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ import (
17
17
18
18
"golang.org/x/xerrors"
19
19
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
+
20
25
"github.com/coder/coder/cli"
21
26
"github.com/coder/coder/cli/clibase"
22
27
"github.com/coder/coder/cli/cliui"
@@ -25,10 +30,6 @@ import (
25
30
"github.com/coder/coder/coderd/workspaceapps"
26
31
"github.com/coder/coder/codersdk"
27
32
"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"
32
33
)
33
34
34
35
func (r * RootCmd ) workspaceProxy () * clibase.Cmd {
You can’t perform that action at this time.
0 commit comments