summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorroerick <roerick@wyo.town>2025-10-17 15:32:19 -0600
committerroerick <roerick@wyo.town>2025-10-17 15:32:19 -0600
commitce61d3db96e0539c8df1886ac635e7e85dbde31f (patch)
tree8af7c0eda03b91273ebffbde5799e4436b04cac6 /go.mod
initial commit, models not working
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod21
1 files changed, 21 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..fd32880
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,21 @@
+module wyo.town/netzah
+
+go 1.24.1
+
+require (
+ github.com/gorilla/mux v1.8.1
+ gorm.io/driver/postgres v1.6.0
+ gorm.io/gorm v1.31.0
+)
+
+require (
+ github.com/jackc/pgpassfile v1.0.0 // indirect
+ github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
+ github.com/jackc/pgx/v5 v5.6.0 // indirect
+ github.com/jackc/puddle/v2 v2.2.2 // indirect
+ github.com/jinzhu/inflection v1.0.0 // indirect
+ github.com/jinzhu/now v1.1.5 // indirect
+ golang.org/x/crypto v0.31.0 // indirect
+ golang.org/x/sync v0.10.0 // indirect
+ golang.org/x/text v0.21.0 // indirect
+)