From 0274ab0038b2c27ab61ec03602fb6b7355d40cd3 Mon Sep 17 00:00:00 2001 From: Maximilien Richer Date: Sun, 2 Feb 2020 12:09:35 +0100 Subject: Implements go modules Following errors compiling with go 1.13 See https://blog.golang.org/migrating-to-go-modules for details. --- go.mod | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..f50d5fe --- /dev/null +++ b/go.mod @@ -0,0 +1,9 @@ +module git.luxeylab.net/lx/bottin + +go 1.13 + +require ( + github.com/google/uuid v1.1.1 + github.com/hashicorp/consul/api v1.3.0 + github.com/sirupsen/logrus v1.4.2 +) -- cgit v1.2.3