mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
15 lines
168 B
Go
15 lines
168 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"g/net/ghttp"
|
|
)
|
|
|
|
|
|
func main() {
|
|
c := ghttp.NewClient()
|
|
r := c.Get("http://192.168.2.124")
|
|
|
|
fmt.Println(r.StatusCode)
|
|
}
|