This commit is contained in:
Gabe Farrell 2026-01-12 13:51:12 -05:00
parent e45099c71a
commit c8b1bd3576
8 changed files with 564 additions and 0 deletions

View file

@ -44,3 +44,9 @@ type ExportItem struct {
ReleaseAliases []models.Alias
Artists []models.ArtistWithFullAliases
}
type InterestBucket struct {
BucketStart time.Time `json:"bucket_start"`
BucketEnd time.Time `json:"bucket_end"`
ListenCount int64 `json:"listen_count"`
}