package customer import ( "wagfarm-api/database" "wagfarm-api/taxonomy/base" ) type Customer struct{ base.Taxonomy } func RegisterModels() { database.RegisterModel(&Customer{}) }