aboutsummaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-06-26 19:57:30 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2025-06-26 19:57:30 -0400
commitf2b5e62e54edce872ddc5cc0cd8fc47251ed29c2 (patch)
tree562c57939eedbbca6185fc3d7be920801a2c0754 /go.mod
parent9c4022e270a66d4005d5f210e43c2b62cde0525e (diff)
Add sane defaults for indexing and db storage
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod7
1 files changed, 5 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index bef6f2c..8789075 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/jpappel/atlas
-go 1.24.2
+go 1.24.4
require github.com/mattn/go-sqlite3 v1.14.27
@@ -9,4 +9,7 @@ require (
golang.org/x/term v0.32.0
)
-require golang.org/x/sys v0.33.0 // indirect
+require (
+ github.com/adrg/xdg v0.5.3
+ golang.org/x/sys v0.33.0 // indirect
+)