gf/geg/net/http_client.go
2017-12-30 18:35:24 +08:00

14 lines
192 B
Go

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