rek:Go的简单HTTP客户端。受不朽要求的启发

时间:2024-04-08 02:41:58
【文件属性】:

文件名称:rek:Go的简单HTTP客户端。受不朽要求的启发

文件大小:14KB

文件格式:ZIP

更新时间:2024-04-08 02:41:58

Go

雷克 受启发的的简单HTTP客户端,以及您希望在客户端中获得的所有特定于Go的好东西。这是一个例子: // GET request res , _ := rek . Get ( "https://httpbin.org/get" ) fmt . Println ( res . StatusCode ()) body , _ := rek . BodyAsString ( res . Body ()) fmt . Println ( body ) // POST request type Comment struct { Username string `json:"username"` Body string `json:"body"` } res , _ := rek . Post ( "https://httpbin.org/post" , rek .


【文件预览】:
rek-master
----.gitignore(5B)
----go.mod(147B)
----response.go(2KB)
----Makefile(153B)
----LICENSE(1KB)
----methods.go(2KB)
----go.sum(2KB)
----.github()
--------workflows()
----file.go(1018B)
----README.md(8KB)
----options.go(6KB)
----request_test.go(559B)
----client.go(770B)
----errors.go(113B)
----client_test.go(635B)
----options_test.go(3KB)
----request.go(1KB)

网友评论