shiori/internal/cmd/account-add.go
2019-05-21 10:31:40 +07:00

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
}