From f316e6cd32777d474f7e47276936f9d086a7de2b Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Tue, 28 Sep 2021 10:35:11 -0600 Subject: [PATCH] gomod --- go.mod | 12 ++++++++++++ go.sum | 6 ++++++ 2 files changed, 18 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..109eb95 --- /dev/null +++ b/go.mod @@ -0,0 +1,12 @@ +module local/lastn + +go 1.17 + +require ( + github.com/google/uuid v1.3.0 + local/args v0.0.0-00010101000000-000000000000 +) + +require gopkg.in/yaml.v2 v2.4.0 // indirect + +replace local/args => ../args diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..00b3916 --- /dev/null +++ b/go.sum @@ -0,0 +1,6 @@ +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=