From a67e8d3388053798cfcb6cfbea09c233e971ce18 Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 4 Oct 2024 17:46:49 -0400 Subject: [PATCH] go module config --- go.mod | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..5d8255d --- /dev/null +++ b/go.mod @@ -0,0 +1,10 @@ +module git.libraryofcode.org/engineering/bces + +go 1.20 + +require github.com/redis/go-redis/v9 v9.6.1 + +require ( + github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect +)