summaryrefslogtreecommitdiff
path: root/stream.go
AgeCommit message (Collapse)Author
2024-10-31Change module name and restructure contentv0.1.2xegineering
The repository names for soundbox are named as below: - app: soundbox-app - Go library module: soundbox-go - Device: soundbox The Go module names were: - app: xengineering.eu/soundbox/app - Go library module: xengineering.eu/soundbox This does not make clear which module is related to which repository since the names are different. Thus it should be changed to: - app: xengineering.eu/soundbox-app - Go library module: xengineering.eu/soundbox-go The import statement for the library is then: import "xengineering.eu/soundbox-go/soundbox" This is a bit longer but it keeps the property that the library is referenced inside the code by the simple name `soundbox`.
2024-10-06Add missing doc string to public functionxegineering
2024-10-03Add soundbox.StreamURLContext()v0.1.0xegineering
This should be the primary public API of the library to stream web radio to soundbox devices.
2024-10-03Remove soundbox.Clientxegineering
This data structure only contained a net.HardwareAddr and did not provide much more useful functionality. Thus the net.HardwareAddr type should be used directly.