Recently I'm doing a file upload and download function, but the *.api file does not support it
I hope api grammar can support these types
type Request {
id string `form:"id"`
file File `form:"file"`
files []File `form:"files"`
}
type Response1 interface{}
type Response2 []byte{}
Recently I'm doing a file upload and download function, but the
*.apifile does not support itI hope api grammar can support these types