Skip to content

Commit 74d8ae4

Browse files
committed
Rename workspace agent to auth
1 parent 3f99334 commit 74d8ae4

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

cli/workspaceagent.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package cli
2+
3+
import (
4+
"github.com/spf13/cobra"
5+
)
6+
7+
func workspaceAgent() *cobra.Command {
8+
return &cobra.Command{
9+
Use: "agent",
10+
RunE: func(cmd *cobra.Command, args []string) error {
11+
return nil
12+
},
13+
}
14+
}

cli/workspaces.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ func workspaces() *cobra.Command {
66
cmd := &cobra.Command{
77
Use: "workspaces",
88
}
9+
cmd.AddCommand(workspaceAgent())
910
cmd.AddCommand(workspaceCreate())
1011

1112
return cmd
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)