type Project struct {
Id int64 `json:"project_id"`
Title string `json:"title"`
Name string `json:"name"`
Data Data `json:"data"`
Commits Commits `json:"commits"`
}
Write your answer...
I am just playing around with Go and do not yet have a good mental model of when structs are passed by value or by reference. This may be a very dumb question but I just want to experiment a bit a
Chris Gregori
Learning resources & tutorials
Asked • Feb 6 2020