Adds apple subcommand

master
Stephen McQuay 5 years ago
parent 3dab222c48
commit d96e4ec394
Signed by: sm
GPG Key ID: C383C74875475AC8

@ -0,0 +1,20 @@
package yay
type Apple struct {
Sequence
}
func NewApple() *Apple {
return &Apple{
Sequence{
Frames: [][]rune{
[]rune(``),
[]rune(``),
[]rune(``),
[]rune(``),
[]rune(``),
[]rune(``),
},
},
}
}

@ -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()
}

Loading…
Cancel
Save