Skip to content

Commit

Permalink
x: make exo api an alias to exo x (#579)
Browse files Browse the repository at this point in the history
Initially the idea of the `exo x` command was for it to be a last resort
only, however since it has been quite stable and is now used by many
customers we add the alias `exo api` which is less discouraging.
  • Loading branch information
sauterp authored Feb 21, 2024
1 parent 474fb87 commit 9467e43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
### Features
- limits: get block storage volume limit #577

### Improvements
- x: make `exo api` an alias to `exo x` #579

## 1.76.1

### Improvements
Expand Down
1 change: 1 addition & 0 deletions cmd/x.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ var xCmd *cobra.Command
func init() {
xCmd = x.InitCommand()
xCmd.Use = "x"
xCmd.Aliases = append(xCmd.Aliases, "api")
xCmd.Hidden = true
xCmd.Long = `Low-level Exoscale API calls -- don't use this unless you have to.
Expand Down

0 comments on commit 9467e43

Please sign in to comment.