lightshowpi/sound/sound.go

10 lines
114 B
Go

package sound
import (
"context"
)
type Output interface {
Play(ctx context.Context, filePath string) error
}