shiori/internal/cmd/account.go

21 lines
286 B
Go
Raw Normal View History

2019-05-21 11:31:40 +08:00
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
}