diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | soundbox/example_pipewire_test.go (renamed from soundbox/pipewire_test.go) | 2 | ||||
-rw-r--r-- | soundbox/example_url_test.go (renamed from soundbox/url_test.go) | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f7e58e8..35947be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ adheres to [Semantic Versioning][semantic-versioning]. ### Added - streaming any audio content via PipeWire capture device on Linux +- examples to overview section of Go API documentation ## [Version 0.1.5][0.1.5] - 2024-11-29 diff --git a/soundbox/pipewire_test.go b/soundbox/example_pipewire_test.go index b857414..53864f3 100644 --- a/soundbox/pipewire_test.go +++ b/soundbox/example_pipewire_test.go @@ -9,7 +9,7 @@ import ( "xengineering.eu/soundbox-go/soundbox" ) -func ExampleStreamPipewireContext() { +func Example_pipewire() { ctx, cancel := context.WithCancel(context.Background()) // all soundboxes are referenced by their MAC address diff --git a/soundbox/url_test.go b/soundbox/example_url_test.go index 41907ad..5c6a7c2 100644 --- a/soundbox/url_test.go +++ b/soundbox/example_url_test.go @@ -9,7 +9,7 @@ import ( "xengineering.eu/soundbox-go/soundbox" ) -func ExampleStreamURLContext() { +func Example_url() { ctx, cancel := context.WithCancel(context.Background()) // all soundboxes are referenced by their MAC address |