mirror of
https://github.com/go-shiori/shiori.git
synced 2025-02-22 06:53:22 +08:00
13 lines
211 B
Go
13 lines
211 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func accountAddCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "add username",
|
|
Short: "Create new account",
|
|
Args: cobra.ExactArgs(1),
|
|
}
|
|
|
|
return cmd
|
|
}
|