Fix tests and clean up code a bit

This commit is contained in:
Deluan 2022-12-27 16:36:13 -05:00 committed by Deluan Quintão
parent 332900774d
commit 8f3387a894
11 changed files with 169 additions and 91 deletions

View file

@ -19,6 +19,9 @@ type ArtworkID struct {
}
func (id ArtworkID) String() string {
if id.ID == "" {
return ""
}
return fmt.Sprintf("%s-%s", id.Kind.prefix, id.ID)
}