x/cmd/pwgen.go
2020-10-11 07:50:18 -07:00

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")
},
}