Feat/config/generate (#136)

Implement config command & generate verb to write default configuration to file or stdout.
This commit is contained in:
Fabian Kammel 2022-05-12 15:14:52 +02:00 committed by GitHub
parent 49ee05b680
commit 094a8b7659
5 changed files with 145 additions and 0 deletions

View file

@ -38,6 +38,7 @@ func NewRootCmd() *cobra.Command {
rootCmd.AddCommand(newRecoverCmd())
rootCmd.AddCommand(newTerminateCmd())
rootCmd.AddCommand(newVersionCmd())
rootCmd.AddCommand(newConfigCmd())
return rootCmd
}