Skip to content

Commit

Permalink
feat(cmd/azure): Create slu azure subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Oct 10, 2023
1 parent 4f32c4c commit 2fa345e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions cmd/azure/azure.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package azure

import (
"github.com/sikalabs/slu/cmd/root"
"github.com/spf13/cobra"
)

var Cmd = &cobra.Command{
Use: "azure",
Aliases: []string{"az"},
Short: "Azure Utils",
}

func init() {
root.RootCmd.AddCommand(Cmd)
}
1 change: 1 addition & 0 deletions cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
_ "github.com/sikalabs/slu/cmd/aws/who_am_i"
_ "github.com/sikalabs/slu/cmd/awx"
_ "github.com/sikalabs/slu/cmd/awx/password"
_ "github.com/sikalabs/slu/cmd/azure"
_ "github.com/sikalabs/slu/cmd/base64"
_ "github.com/sikalabs/slu/cmd/base64/interactive_decode_clipboard"
_ "github.com/sikalabs/slu/cmd/chaos_monkey"
Expand Down

0 comments on commit 2fa345e

Please sign in to comment.