From 58acd1c290a7fe5af9133d085a20af455404816d Mon Sep 17 00:00:00 2001 From: Oleg Balunenko Date: Tue, 8 Dec 2020 16:21:05 +0300 Subject: [PATCH 1/2] Add gomod --- .gitignore | 2 ++ go.mod | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0a95508 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea/ +.vscode/ \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..f4fb725 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/patrickmn/go-cache + +go 1.15 From ba69f3ccecb9ba2301f1990a3c61a3a44f04d02a Mon Sep 17 00:00:00 2001 From: Oleg Balunenko Date: Tue, 8 Dec 2020 16:22:15 +0300 Subject: [PATCH 2/2] Update CONTRIBUTORS --- CONTRIBUTORS | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2b16e99..800fa09 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -7,3 +7,4 @@ Dustin Sallings Jason Mooberry Sergey Shepelev Alex Edwards +Oleg Balunenko