From 73ae7173f0faaf57145dac8d60381d2bc73e65b4 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 16 Feb 2021 14:26:20 -0500 Subject: [PATCH] go: add a go modules file, for better dep tracking Fixes #12 Signed-off-by: Vincent Batts --- 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..564e6ed --- /dev/null +++ b/go.mod @@ -0,0 +1,10 @@ +module github.com/vbatts/sl-feeds + +go 1.13 + +require ( + github.com/BurntSushi/toml v0.3.1 + github.com/gorilla/feeds v1.1.1 + github.com/kr/pretty v0.2.1 // indirect + github.com/urfave/cli v1.22.5 +)