refactor(go): Move everything from go4k to root package sointu

This commit is contained in:
Veikko Sariola
2020-12-16 21:35:53 +02:00
parent d0bd877b3f
commit 224b8dcb70
34 changed files with 293 additions and 294 deletions

6
audio/player.go Normal file
View File

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