You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
easyjson improves the performance of marshaling and unmarshaling JSON by
generating custom code for each of your structs. As the generated code is based
on your structs, it avoids using reflection.
Add easyjson, generating code via go generate for all structs which are
used for JSON requests/responses.
Add CI step to ensure generated code is up to date, failing if it is not
The text was updated successfully, but these errors were encountered:
easyjson improves the performance of marshaling and unmarshaling JSON by
generating custom code for each of your structs. As the generated code is based
on your structs, it avoids using reflection.
go generate
for all structs which areused for JSON requests/responses.
The text was updated successfully, but these errors were encountered: