Files
gf/geg/net/http_client.go
2017-11-27 13:49:23 +08:00

15 lines
187 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)
}