gf/geg/net/http_client.go

14 lines
192 B
Go
Raw Normal View History

2017-11-23 10:21:28 +08:00
package main
import (
"fmt"
"gitee.com/johng/gf/g/net/ghttp"
2017-11-23 10:21:28 +08:00
)
func main() {
2017-12-30 18:35:24 +08:00
c := ghttp.NewClient()
r, _ := c.Get("http://192.168.2.124")
2017-11-23 10:21:28 +08:00
fmt.Println(r.StatusCode)
}