Files
gf/geg/net/ghttp/client/get.go
2019-04-03 00:03:46 +08:00

13 lines
169 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/g/net/ghttp"
)
func main() {
c := ghttp.NewClient()
r, _ := c.Get("http://baidu.com")
fmt.Println(r.StatusCode)
}