aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-10-09 17:20:22 -0700
committerFranck Cuny <franck@fcuny.net>2021-10-09 18:21:28 -0700
commit28dd6b6ae32e0cccdaf6486fb76c6b7f98647f27 (patch)
tree705bcaa9b2a1df7bfc099b505cf3f9f13ccec230 /go.mod
parentREADME: add some information about logging (diff)
downloadx-28dd6b6ae32e0cccdaf6486fb76c6b7f98647f27.tar.gz
scrobbler: watch for events and print song details
We create a module "mpd" to interact with our MPD instance. For now we only have a single function to create a new client, which creates an actual client for mpd (and we ping the instance every 30 seconds), and a watcher to receive new events. The tool "scrobbler" then wait for new events and display songs information.
Diffstat (limited to '')
-rw-r--r--go.mod2
1 files changed, 2 insertions, 0 deletions
diff --git a/go.mod b/go.mod
index fc37193..cafa7bc 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,5 @@
module golang.fcuny.net/mpd-stats
go 1.17
+
+require github.com/fhs/gompd/v2 v2.2.0