Created
March 19, 2025 13:34
-
-
Save wjkoh/89732409cbb8568e005d42371be4d750 to your computer and use it in GitHub Desktop.
Go: The Correct Way of Relationships
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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