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