We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
type BasePost struct { Id int64 Title string URL string } type Author struct { ID string Name string Email string } type HNPost struct { BasePost Author `gorm:"embedded_prefix:user_"` // Embedded struct Upvotes int32 } type EngadgetPost struct { BasePost BasePost `gorm:"embedded"` Author Author `gorm:"embedded;embedded_prefix:author_"` // Embedded struct ImageUrl 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.