package models import "gorm.io/gorm" // struct(s) type Artist struct { gorm.Model ID int Name string Tracks []Track }