mirror of
https://github.com/go-shiori/shiori.git
synced 2025-02-22 06:53:22 +08:00
20 lines
286 B
Go
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
|
|
}
|