aboutsummaryrefslogtreecommitdiff
path: root/cmd/mpd-scrobbler/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/mpd-scrobbler/main.go')
-rw-r--r--cmd/mpd-scrobbler/main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/mpd-scrobbler/main.go b/cmd/mpd-scrobbler/main.go
index 3540807..fdd9e4d 100644
--- a/cmd/mpd-scrobbler/main.go
+++ b/cmd/mpd-scrobbler/main.go
@@ -1,7 +1,9 @@
package main
import (
+ "fmt"
"log"
+ "os"
"golang.fcuny.net/mpd-stats/internal/scrobbler"
)
@@ -9,8 +11,9 @@ import (
func main() {
net := "tcp"
addr := "localhost:6600"
+ dbpath := fmt.Sprintf("%s/.config/scrobbler.sql", os.Getenv("HOME"))
- s, err := scrobbler.NewScrobbler(net, addr)
+ s, err := scrobbler.NewScrobbler(net, addr, dbpath)
if err != nil {
log.Fatalf("failed to create a client: %v", err)
}