From 08d96ca00ffa23fa4a10addfbdfc079ca0382a84 Mon Sep 17 00:00:00 2001 From: Elijah Duffy Date: Fri, 30 May 2025 11:20:31 -0700 Subject: [PATCH] initial commit --- README.md | 3 +++ go.mod | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 README.md create mode 100644 go.mod diff --git a/README.md b/README.md new file mode 100644 index 0000000..b58d59a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# dbx + +dbx (**D**ata**b**ase **E**extensions) is a small toolkit of common and reusable database helpers built around the [Jet](https://github.com/go-jet/jet) SQL builder. diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1356d25 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gitea.auvem.com/go-toolkit/dbx + +go 1.24.0