summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-20 15:35:24 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-20 15:35:24 -1000
commit31b7d10ff0df0dba469c67d532aabbc29cceb5f0 (patch)
treee3ad2a5d932896ad6a4870090be754469909cd92 /go.mod
parent3bb0ca2e58168b28c5e49763acd25f531fb8a78d (diff)
Add sqlmock dependency for auth unit tests
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod10
1 files changed, 5 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index 055dc8f..330550e 100644
--- a/go.mod
+++ b/go.mod
@@ -7,10 +7,10 @@ require (
github.com/mattn/go-sqlite3 v1.14.33
)
-require github.com/joho/godotenv v1.5.1
-
require (
- github.com/alexedwards/scs/sqlite3store v0.0.0-20251002162104-209de6e426de // indirect
- github.com/alexedwards/scs/v2 v2.9.0 // indirect
- golang.org/x/crypto v0.47.0 // indirect
+ github.com/DATA-DOG/go-sqlmock v1.5.2
+ github.com/alexedwards/scs/sqlite3store v0.0.0-20251002162104-209de6e426de
+ github.com/alexedwards/scs/v2 v2.9.0
+ github.com/joho/godotenv v1.5.1
+ golang.org/x/crypto v0.47.0
)