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