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
Currently, we extends the base message builder that didn't fit with go syntax :
func messageBuilder(b *strlang.Golang, v interface{}) { base.MessageBuilder(b.Builder, nil, v, true, map[string]string{ "key": `"%v": `, "arrayStart": "[]interface{} {\n", "arrayEnd": "}", "mapStart": "map[string]interface{} {\n", "mapEnd": "}", "string": `"%s"`, "number": "%v", "separator": ",\n", "close": "\n", "quote": "\"", }) }
Everything into a map became a interface{}, the goal should be to detect type if the map didn't contains multiple type value.
The text was updated successfully, but these errors were encountered:
ermos
No branches or pull requests
Currently, we extends the base message builder that didn't fit with go syntax :
Everything into a map became a interface{}, the goal should be to detect type if the map didn't contains multiple type value.
The text was updated successfully, but these errors were encountered: