From bf62cef394b8e58a9fbc74193fb2e5335feb4703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Mon, 13 May 2024 15:20:56 +0200 Subject: [PATCH] docs: add docs for new client --- docs/guide/faster-fiber.md | 4 ++-- docs/whats_new.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/faster-fiber.md b/docs/guide/faster-fiber.md index 9218a727..d4c2df1b 100644 --- a/docs/guide/faster-fiber.md +++ b/docs/guide/faster-fiber.md @@ -31,7 +31,7 @@ func main() { ### References -- [Set custom JSON encoder for client](../api/client.md#jsonencoder) -- [Set custom JSON decoder for client](../api/client.md#jsondecoder) +- [Set custom JSON encoder for client](../client/rest.md#setjsonmarshal) +- [Set custom JSON decoder for client](../client/rest.md#setjsonunmarshal) - [Set custom JSON encoder for application](../api/fiber.md#jsonencoder) - [Set custom JSON decoder for application](../api/fiber.md#jsondecoder) diff --git a/docs/whats_new.md b/docs/whats_new.md index b7b640fd..fe193485 100644 --- a/docs/whats_new.md +++ b/docs/whats_new.md @@ -224,7 +224,7 @@ DRAFT section ## 🌎 Client package The Gofiber client has been completely rebuilt. It includes numerous new features such as Cookiejar, request/response hooks, and more. -You can take a look to [client docs](./client/client.md) to see what's new with the client. +You can take a look to [client docs](./client/rest.md) to see what's new with the client. ## 📎 Binding