package module moved into root of repository.

example in readme updated.

level pooler implemented, runs in its own goroutine.

Remote type now exported

observers example updated.
This commit is contained in:
onyx-and-iris
2022-07-09 19:01:58 +01:00
parent f16bed893f
commit 70d69f5599
32 changed files with 179 additions and 75 deletions

15
recorder_test.go Normal file
View File

@@ -0,0 +1,15 @@
package voicemeeter
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetRecorder(t *testing.T) {
//t.Skip("skipping test")
__rec := newRecorder()
t.Run("Should return a button type", func(t *testing.T) {
assert.NotNil(t, __rec)
})
}