Adds apple subcommand

This commit is contained in:
Stephen McQuay 2018-09-09 19:09:56 -07:00
parent 3dab222c48
commit d96e4ec394
Signed by: sm
GPG Key ID: C383C74875475AC8
2 changed files with 30 additions and 0 deletions

20
apple.go Normal file
View File

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

View File

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