From b1f06714a6f6f1ab72c231e849b0b834272f878e Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Sun, 14 Oct 2018 10:38:51 +0200 Subject: [PATCH] Run go mod tidy Needing to quote the package strings is from an earlier version of vgo. --- go.mod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 44befd4..ea28ffe 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ -module "github.com/gorilla/sessions" +module github.com/gorilla/sessions require ( - "github.com/gorilla/context" v1.1.1 - "github.com/gorilla/securecookie" v1.1.1 + github.com/gorilla/context v1.1.1 + github.com/gorilla/securecookie v1.1.1 )