aboutsummaryrefslogtreecommitdiff
path: root/internal/scrobbler/scrobbler.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mpd-stats: pass database path to the scrobblerFranck Cuny2021-10-101-4/+27
| | | | | | | | When creating a scrobbler, we provide the path to the database. The scrobbler then get a handler to the database. When a new record is created, we persist it to the database using the `save` function.
* scrobbler: add functions to create and run itFranck Cuny2021-10-101-0/+66
Add a new function to create a scrobbler. The function takes care of creating the mpd client. Add a function to run the scrobbler, which takes care of creating a new record when needed. This will simplify the interface for the caller, as all they really care about is: create the scrobbler, close it when we're done, and collect songs information while we listen to our music.