Silly little cli celebration tool
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yay/apple.go

20 lines
268 B

package yay
type Apple struct {
Sequence
}
func NewApple() *Apple {
return &Apple{
Sequence{
Frames: [][]rune{
[]rune(` `),
[]rune(` `),
[]rune(` `),
[]rune(` `),
[]rune(` `),
[]rune(` `),
},
},
}
}