|
|
|
@ -50,6 +50,15 @@ func main() { |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
apple := &cobra.Command{ |
|
|
|
|
Use: "apple", |
|
|
|
|
Short: "Go Apple, Go!", |
|
|
|
|
Run: func(cmd *cobra.Command, args []string) { |
|
|
|
|
t := yay.NewViewPort(yay.NewApple(), time.Duration(frameRate)*time.Millisecond) |
|
|
|
|
t.Run() |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
version := &cobra.Command{ |
|
|
|
|
Use: "version", |
|
|
|
|
Short: "prints the version to stdout", |
|
|
|
@ -60,6 +69,7 @@ func main() { |
|
|
|
|
main.AddCommand(shrug) |
|
|
|
|
main.AddCommand(dance) |
|
|
|
|
main.AddCommand(claps) |
|
|
|
|
main.AddCommand(apple) |
|
|
|
|
main.AddCommand(version) |
|
|
|
|
main.Execute() |
|
|
|
|
} |
|
|
|
|