From 826fcc437a719ea581add359a8edd7234caae5c8 Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Thu, 18 Jul 2019 18:56:04 +0400 Subject: [PATCH] chore: Add go mod support --- 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..44b0e79 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/nxshock/signaller + +go 1.12 + +require github.com/gorilla/mux v1.7.3 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..2bf9262 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/gorilla/mux v1.7.3 h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw= +github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=