diff options
author | xengineering <me@xengineering.eu> | 2024-09-29 12:38:30 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-09-29 12:38:30 +0200 |
commit | 9d3e0c0f2e30dc43d1e3a1bb316d6af918bd8309 (patch) | |
tree | 246c044d7cc9ecab9941c0419d82447a6749ce1a /go.mod | |
parent | 58e6db7eca97e4514df82464cc2a1fe8d49c1adc (diff) | |
download | soundbox-app-9d3e0c0f2e30dc43d1e3a1bb316d6af918bd8309.tar soundbox-app-9d3e0c0f2e30dc43d1e3a1bb316d6af918bd8309.tar.zst soundbox-app-9d3e0c0f2e30dc43d1e3a1bb316d6af918bd8309.zip |
Add web radio player app as MVP
While streaming to soundbox devices is not supported this MVP is a
working mpv-based GUI to play sound from web radio URLs on a Linux
computer.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +module xengineering.eu/soundbox + +go 1.22.5 + +require gioui.org v0.7.1 + +require ( + gioui.org/cpu v0.0.0-20210817075930-8d6a761490d2 // indirect + gioui.org/shader v1.0.8 // indirect + github.com/go-text/typesetting v0.1.1 // indirect + golang.org/x/exp v0.0.0-20240707233637-46b078467d37 // indirect + golang.org/x/exp/shiny v0.0.0-20240707233637-46b078467d37 // indirect + golang.org/x/image v0.18.0 // indirect + golang.org/x/sys v0.22.0 // indirect + golang.org/x/text v0.16.0 // indirect +) |