From b2335194073336f61dcf85c81ae407f4e301e950 Mon Sep 17 00:00:00 2001 From: claude Date: Mon, 7 Sep 2026 13:08:41 +0100 Subject: [PATCH] add archival notice to README This repository is being archived. Point readers at the standard-library or community package that replaces it. Co-Authored-By: Claude Sonnet 5 --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index d2e7e84..f72c440 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ +> [!IMPORTANT] +> **This repository is archived and no longer maintained.** +> +> These are thin helpers over `net/http` and `encoding/json`. +> +> **Use instead:** +> - Standard library `net/http` + `encoding/json`. +> - [`github.com/go-chi/render`](https://github.com/go-chi/render) for request decoding and response/error rendering helpers. + +--- + # Go REST Some handy functions for developing JSON-based REST APIs. In particular, it simplifies reading HTTP request bodies, writing HTTP response bodies, and handling errors.