Introduce models.Entity type

This commit is contained in:
Philipp Wolfer 2023-12-10 14:22:38 +01:00 committed by Weblate
parent 086bf25616
commit 78baba8154

View file

@ -34,6 +34,13 @@ const (
Loves Entity = "loves" Loves Entity = "loves"
) )
type Entity string
const (
Listens Entity = "listens"
Loves Entity = "loves"
)
type AdditionalInfo map[string]any type AdditionalInfo map[string]any
type Track struct { type Track struct {