mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 21:28:22 +08:00
14 lines
192 B
Go
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)
|
|
}
|