aboutsummaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-04-10 15:12:12 +0100
committerMatthew Lemon <y@yulqen.org>2024-04-10 15:12:12 +0100
commit50d6737b0c81869d77486fded1476f55917b940b (patch)
tree875151701dd1cf758130f28fb186cc4af86fcf75 /go.mod
parentb408be58debc72322fa1680a8f7293b9ba3b571f (diff)
Adds .env file with database dsn in it
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod5
1 files changed, 4 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 6b79d60..0070a82 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,7 @@ module git.yulqen.org/go/dbasik-go
go 1.22.1
-require github.com/lib/pq v1.10.9 // indirect
+require (
+ github.com/joho/godotenv v1.5.1 // indirect
+ github.com/lib/pq v1.10.9 // indirect
+)