Skip to content

feat: Add workspace proxy enterprise cli commands #7123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Imports
  • Loading branch information
Emyrk committed Apr 17, 2023
commit 6ce0dec7042c3f28f372f7b082dec711474cbcc0
3 changes: 2 additions & 1 deletion cli/appsecuritykey.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import (
"database/sql"
"fmt"

"golang.org/x/xerrors"

"github.com/coder/coder/cli/clibase"
"github.com/coder/coder/coderd/database"
"github.com/coder/coder/coderd/database/migrations"
"golang.org/x/xerrors"
)

func (*RootCmd) appSecurityKey() *clibase.Cmd {
Expand Down
9 changes: 5 additions & 4 deletions enterprise/cli/workspaceproxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ import (

"golang.org/x/xerrors"

"github.com/coreos/go-systemd/daemon"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/collectors"
"github.com/prometheus/client_golang/prometheus/promhttp"

"github.com/coder/coder/cli"
"github.com/coder/coder/cli/clibase"
"github.com/coder/coder/cli/cliui"
Expand All @@ -25,10 +30,6 @@ import (
"github.com/coder/coder/coderd/workspaceapps"
"github.com/coder/coder/codersdk"
"github.com/coder/coder/enterprise/wsproxy"
"github.com/coreos/go-systemd/daemon"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/collectors"
"github.com/prometheus/client_golang/prometheus/promhttp"
)

func (r *RootCmd) workspaceProxy() *clibase.Cmd {
Expand Down