shiori/internal/cmd/account.go
2019-05-21 10:31:40 +07:00

20 lines
286 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
func accountCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "account",
Short: "Manage account for accessing web interface",
}
cmd.AddCommand(
accountAddCmd(),
accountPrintCmd(),
accountDeleteCmd(),
)
return cmd
}