summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-02-25 17:50:50 +0100
committerMike Vink <mike1994vink@gmail.com>2023-02-25 17:50:50 +0100
commit9dbdf08cb814a32ebb27d200391af83c6f2a7ff5 (patch)
tree6fff3e789cdea402113e8705edb739c26dd973f2 /go.mod
parentcc446240fac48c545c522f3d69c5d04a93b63461 (diff)
start scaffolding and boilerplate
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod17
1 files changed, 17 insertions, 0 deletions
diff --git a/go.mod b/go.mod
index a34aec1..9e6c5f2 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,20 @@
module mvinkio.online/aoc
go 1.19
+
+require (
+ github.com/onsi/ginkgo/v2 v2.8.3
+ github.com/onsi/gomega v1.27.1
+)
+
+require (
+ github.com/go-logr/logr v1.2.3 // indirect
+ github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
+ github.com/google/go-cmp v0.5.9 // indirect
+ github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
+ golang.org/x/net v0.7.0 // indirect
+ golang.org/x/sys v0.5.0 // indirect
+ golang.org/x/text v0.7.0 // indirect
+ golang.org/x/tools v0.6.0 // indirect
+ gopkg.in/yaml.v3 v3.0.1 // indirect
+)