package cmd

import (
	"log"

	"github.com/spf13/cobra"
)

var passwdCmd = &cobra.Command{
	Use:   "passwd",
	Short: "Set the password for the web interface",
	Long: `
`,
	Run: func(cmd *cobra.Command, args []string) {
		log.Fatal("not implemented")
	},
}

func init() {
	rootCmd.AddCommand(passwdCmd)
}