add archival notice to README #3

Merged
aneurin merged 1 commits from archive-notice into main 2026-09-07 12:36:56 +00:00
Showing only changes of commit 5520ebe7b9 - Show all commits
+13
View File
@@ -1,3 +1,16 @@
> [!IMPORTANT]
> **This repository is archived and no longer maintained.**
>
> `Record` is a convenience layer over `map[string]any`. The type coercion
> it provides is covered more completely by existing libraries, and scanning
> into structs is usually the better approach.
>
> **Use instead:**
> - [`github.com/spf13/cast`](https://github.com/spf13/cast) — `cast.ToIntE`, `cast.ToStringE`, etc. for coercing an `any` to a concrete type.
> - [`github.com/jmoiron/sqlx`](https://github.com/jmoiron/sqlx) or plain `database/sql` struct scanning when the source is SQL rows.
---
# Go Record
Record stores mixed scalar data (Boolean, numeric, and string) and provides type-safe methods to retrieve it. It automatically casts values where possible.