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
目标:支持gout.H写法 why:这样就不需要定义结构体,可以提升开发效率
伪代码如下
package main import ( "fmt" "github.com/guonaihong/gout" ) func main() { code := 0 err := gout.New(nil). POST(":8080/test"). ToForm(gout.H{"mode": "A", "text": "good", "voice": gout.FileFile("test.pcm"), "voice2": gout.FileMem("pcm")}).Code(&code).Do() if err != nil { fmt.Printf("%s\n", err) } if code != 200 { } }
The text was updated successfully, but these errors were encountered:
update #26
35abcb8
done #26
7206c58
No branches or pull requests
目标:支持gout.H写法
why:这样就不需要定义结构体,可以提升开发效率
伪代码如下
The text was updated successfully, but these errors were encountered: