From 5737f2568684ccd5acde6fbcde437ce1ad9620ac Mon Sep 17 00:00:00 2001 From: Travis Keep Date: Fri, 4 Sep 2020 17:10:40 -0700 Subject: [PATCH] Add go.mod and go.sum --- go.mod | 5 +++++ go.sum | 2 ++ 2 files changed, 7 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..0d81f1b --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/keep94/weblogs + +go 1.14 + +require github.com/gorilla/context v1.1.1 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..654cadd --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/gorilla/context v1.1.1 h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8= +github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg=