Skip to content

Instantly share code, notes, and snippets.

@wjkoh
Created March 19, 2025 13:34
Show Gist options
  • Save wjkoh/89732409cbb8568e005d42371be4d750 to your computer and use it in GitHub Desktop.
Save wjkoh/89732409cbb8568e005d42371be4d750 to your computer and use it in GitHub Desktop.
Go: The Correct Way of Relationships
type Person struct {
Email string
Name string
}
type Resume struct {
Author *Person
Content string
}
type ResumeReview struct {
Resume *person.Resume
Score Score
Summary string
Details string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment