fix(go/audio): fix audio.Player interface to have erroring Close()

not sure if this is actually required, though? shouldn't we just try to close and disregard errors?
This commit is contained in:
Matias Lahti 2020-11-08 02:41:42 +02:00
parent 9b6249a1a7
commit 7a434f69fd

View File

@ -2,5 +2,5 @@ package audio
type Player interface {
Play(buffer []float32) (err error)
Close()
Close() error
}