diff options
Diffstat (limited to 'cmd/aocli/gen.go')
| -rw-r--r-- | cmd/aocli/gen.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cmd/aocli/gen.go b/cmd/aocli/gen.go new file mode 100644 index 0000000..c8251a6 --- /dev/null +++ b/cmd/aocli/gen.go @@ -0,0 +1,15 @@ +package main + +import ( + "fmt" + + "github.com/spf13/cobra" +) + +var genCmd = &cobra.Command{ + Use: "gen", + Short: "Generate a new key pair", + Run: func(cmd *cobra.Command, args []string) { + fmt.Println(args) + }, +} |
