Skip to content

Commit

Permalink
cli: add curl command
Browse files Browse the repository at this point in the history
Just a hackweek project at this point.
  • Loading branch information
schmichael committed Jun 23, 2021
1 parent 09bd336 commit 8e35269
Show file tree
Hide file tree
Showing 4 changed files with 499 additions and 0 deletions.
5 changes: 5 additions & 0 deletions command/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ func Commands(metaPtr *Meta, agentUi cli.Ui) map[string]cli.CommandFactory {
Meta: meta,
}, nil
},
"curl": func() (cli.Command, error) {
return &CurlCommand{
Meta: meta,
}, nil
},
// operator debug was released in 0.12 as debug. This top-level alias preserves compatibility
"debug": func() (cli.Command, error) {
return &OperatorDebugCommand{
Expand Down
Loading

0 comments on commit 8e35269

Please sign in to comment.