package model import "gorm.io/gorm" type Home struct { gorm.Model } func (m *Home) TableName() string { return "home" }