9 lines
114 B
Go
9 lines
114 B
Go
package sound
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Output interface {
|
|
Play(ctx context.Context, filePath string) error
|
|
}
|