You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Koito/internal/models/listen.go

12 lines
221 B

package models
import (
"time"
)
// a Listen is the same thing as a 'scrobble' but i despise the word scrobble so i will not use it
type Listen struct {
Time time.Time `json:"time"`
Track Track `json:"track"`
}