mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
13 lines
187 B
Go
13 lines
187 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
c := ghttp.NewClient()
|
|
r, _ := c.Get("http://baidu.com")
|
|
fmt.Println(r.StatusCode)
|
|
}
|