lightshowpi/sound/sound.go

10 lines
114 B
Go
Raw Permalink Normal View History

2020-12-03 23:08:46 -05:00
package sound
import (
"context"
)
type Output interface {
Play(ctx context.Context, filePath string) error
}