51 words, 1 min read
type BasePost struct {Id int64Title stringURL string}type Author struct {ID stringName stringEmail string}type HNPost struct {BasePostAuthor `gorm:"embedded_prefix:user_"` // Embedded structUpvotes int32}type EngadgetPost struct {BasePost BasePost `gorm:"embedded"`Author Author `gorm:"embedded;embedded_prefix:author_"` // Embedded structImageUrl string}
continue reading on github.com
โ ๏ธ This post links to an external website. โ ๏ธ
If this post was enjoyable or useful for you, please share it! If you have comments, questions, or feedback, you can email my personal email. To get new posts, subscribe use the RSS feed.