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