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
IIUC, the workload function is like:
func doSomething(data []byte, option map[string][]string) ([]byte, error)
Why do we choose []byte as the type of its param/output, not interface{} or Golang any?
The text was updated successfully, but these errors were encountered:
Also, maybe option can be a param of type map[string]interface{}
Sorry, something went wrong.
I think it was mostly to avoid serialization issue.
No branches or pull requests
IIUC, the workload function is like:
Why do we choose []byte as the type of its param/output, not interface{} or Golang any?
The text was updated successfully, but these errors were encountered: