about summary refs log tree commit diff
path: root/tools/mpd-stats/go.mod
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-10-09 18:16:15 -0700
committerFranck Cuny <franck@fcuny.net>2022-06-11 14:32:06 -0700
commit1898caed6aa8205e56517448405d06fd084ed239 (patch)
tree73413bc1e65b334d6e798360459ef957c6774f04 /tools/mpd-stats/go.mod
parentscrobbler: watch for events and print song details (diff)
downloadworld-1898caed6aa8205e56517448405d06fd084ed239.tar.gz
scrobbler: initial log record type
Define the type for a log record and add an helper function to create a
new record.
Diffstat (limited to 'tools/mpd-stats/go.mod')
-rw-r--r--tools/mpd-stats/go.mod5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/mpd-stats/go.mod b/tools/mpd-stats/go.mod
index cafa7bc..6ffe974 100644
--- a/tools/mpd-stats/go.mod
+++ b/tools/mpd-stats/go.mod
@@ -2,4 +2,7 @@ module golang.fcuny.net/mpd-stats
 
 go 1.17
 
-require github.com/fhs/gompd/v2 v2.2.0
+require (
+	github.com/fhs/gompd/v2 v2.2.0
+	github.com/google/uuid v1.3.0
+)