From 59e86c9fd39308bc6b632e02ecf4d37265dabc91 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 20 Feb 2026 21:06:35 +0200 Subject: Add Go implementation (goprecords) - cmd/goprecords: CLI with import, query, report-from-files, test - internal/goprecords: types, order, aggregate, db, report - internal/version: version constant (0.1.0) - SQLite import (repeatable: clears record table then inserts) - Magefile: Build, Test, Install, Uninstall - Table-driven unit tests; comparison script vs Raku guprecords - .gitignore: *.db, /goprecords binary Co-authored-by: Cursor --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83dd821 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# SQLite databases +*.db + +# Built binary +/goprecords -- cgit v1.2.3