Improved progress report for Spotify loves

This commit is contained in:
Philipp Wolfer 2023-11-22 12:39:41 +01:00
parent 0e3061e837
commit 4a9f26d9db
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
3 changed files with 17 additions and 4 deletions

View file

@ -106,12 +106,14 @@ func (l LovesList) Swap(i, j int) {
}
type ListensResult struct {
Total int
Listens ListensList
OldestTimestamp time.Time
Error error
}
type LovesResult struct {
Total int
Loves LovesList
Error error
}