We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change struct tags from wrp to json so that a Marshal() or Unmarshal() using the standard json library would be compatible.
wrp
json
One example of the structs is the wrp.Message struct:
wrp.Message
wrp-go/messages.go
Line 75 in 1a5926e
The below lines need to be changed so that when parsing the wrp, we look for the json tag rather than the wrp tag.
wrp-go/format.go
Line 34 in 1a5926e
Line 45 in 1a5926e
this is related to this issue: xmidt-org/scytale#70
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Change struct tags from
wrp
tojson
so that a Marshal() or Unmarshal() using the standard json library would be compatible.One example of the structs is the
wrp.Message
struct:wrp-go/messages.go
Line 75 in 1a5926e
The below lines need to be changed so that when parsing the wrp, we look for the
json
tag rather than thewrp
tag.wrp-go/format.go
Line 34 in 1a5926e
wrp-go/format.go
Line 45 in 1a5926e
this is related to this issue: xmidt-org/scytale#70
The text was updated successfully, but these errors were encountered: