Closed SenseiTarzan closed 2 years ago
This is intentionally a []byte. In Go json data is always represented as a []byte and it prevents copying of the original data. Why do you reckon this should be a string?
[]byte
If you wanna use it as a string you can cast it with string(formdata)
Closing this PR because of the reasons discussed above.
This is intentionally a []byte. In Go json data is always represented as a
[]byte
and it prevents copying of the original data. Why do you reckon this should be a string?