shiori/internal/cmd/account-add.go

14 lines
211 B
Go
Raw Normal View History

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