From 98687043f74568aa33cb234a24a860410ec25712 Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Fri, 24 Jul 2026 13:38:05 +0100 Subject: [PATCH] chore: scaffold shared module --- go.work | 7 +++++++ shared/go.mod | 9 +++++++++ shared/go.sum | 6 ++++++ 3 files changed, 22 insertions(+) create mode 100644 go.work create mode 100644 shared/go.mod create mode 100644 shared/go.sum diff --git a/go.work b/go.work new file mode 100644 index 0000000..c525707 --- /dev/null +++ b/go.work @@ -0,0 +1,7 @@ +go 1.26.4 + +use ( + ./server + ./shared + ./sitesvc +) diff --git a/shared/go.mod b/shared/go.mod new file mode 100644 index 0000000..ce64930 --- /dev/null +++ b/shared/go.mod @@ -0,0 +1,9 @@ +module github.com/mrhid6/vantage/shared + +go 1.26.4 + +require ( + github.com/google/uuid v1.6.0 // indirect + go.mongodb.org/mongo-driver/v2 v2.8.0 // indirect + golang.org/x/crypto v0.54.0 // indirect +) diff --git a/shared/go.sum b/shared/go.sum new file mode 100644 index 0000000..e7251d5 --- /dev/null +++ b/shared/go.sum @@ -0,0 +1,6 @@ +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +go.mongodb.org/mongo-driver/v2 v2.8.0 h1:CxWDGQYY8QQwNjAl/aq2sfWakdnWZynnqJ9F4DhHbP8= +go.mongodb.org/mongo-driver/v2 v2.8.0/go.mod h1:yOI9kBsufol30iFsl1slpdq1I0eHPzybRWdyYUs8K/0= +golang.org/x/crypto v0.54.0 h1:YLIA59K4fiNzHzjnZt2tUJQjQtUWfWbeHBqKtk3eScw= +golang.org/x/crypto v0.54.0/go.mod h1:KWL8ny2AZdGR2cWmzeHrp2azQPGogOv+HeQaVEXC2dk=