package
0.0.0-20240501124543-daaba517c38e
Repository: https://github.com/desistdaydream/go-net.git
Documentation: pkg.go.dev

# README

go test -v pkg/basic_http/hello_world/http_client*.go

# Functions

Client1 直接使用 http.Get() 来发起请求.
Client2 先构建一个 Request,再根据这个 Request 发起请求,这种方式常用来自定义请求内容.
HelloWorld 处理客户端请求 /hello 时的具体逻辑.