From a3bfc9ba7bb8f7a50fdb7c766f4adc7665eb258b Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Thu, 26 Aug 2021 12:03:11 -0500 Subject: [PATCH] Go Mod --- go.mod | 8 ++++++++ go.sum | 4 ++++ 2 files changed, 12 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..3e4bd93 --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module git.bullercodeworks.com/brian/boltease + +go 1.16 + +require ( + github.com/boltdb/bolt v1.3.1 + golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..eac0bfa --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4= +github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf h1:2ucpDCmfkl8Bd/FsLtiD653Wf96cW37s+iGx93zsu4k= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=