From 0850ea3918b78067f048f9fa89033156759990ff Mon Sep 17 00:00:00 2001 From: yusing Date: Mon, 23 Feb 2026 14:51:30 +0800 Subject: [PATCH] docs(http): remove default client from README.md --- internal/net/gphttp/README.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/internal/net/gphttp/README.md b/internal/net/gphttp/README.md index 8fc0e111..5a463f6c 100644 --- a/internal/net/gphttp/README.md +++ b/internal/net/gphttp/README.md @@ -89,22 +89,6 @@ The `Handle` and `HandleFunc` methods recover from panics and return them as err ## Usage Examples -### Using the Default Client - -```go -import "github.com/yusing/godoxy/internal/net/gphttp" - -// Simple GET request -resp, err := gphttp.Get("https://example.com") -if err != nil { - log.Fatal(err) -} -defer resp.Body.Close() - -// POST request -resp, err := gphttp.Post("https://example.com", "application/json", body) -``` - ### Creating Custom Transports ```go