We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It generates code like this currently:
type JobWrapper struct { Job Job `json:"job,omitempty"` }
Same with slices and what not.
It would be nice (and probably what most people would want) to have it use pointers, eg:
type JobWrapper struct { Job *Job `json:"job,omitempty"` }