summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-09-29 12:38:30 +0200
committerxengineering <me@xengineering.eu>2024-09-29 12:38:30 +0200
commit9d3e0c0f2e30dc43d1e3a1bb316d6af918bd8309 (patch)
tree246c044d7cc9ecab9941c0419d82447a6749ce1a /go.mod
parent58e6db7eca97e4514df82464cc2a1fe8d49c1adc (diff)
downloadsoundbox-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.mod16
1 files changed, 16 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..01240cb
--- /dev/null
+++ b/go.mod
@@ -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
+)