18 lines
272 B
Go
18 lines
272 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(pwgenCmd)
|
||
|
}
|
||
|
|
||
|
var pwgenCmd = &cobra.Command{
|
||
|
Use: "pwgen",
|
||
|
Short: "Print a randomly generated password",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
panic("unimplemented")
|
||
|
},
|
||
|
}
|