From c446dae83249eef821f825cb30c099617f703372 Mon Sep 17 00:00:00 2001 From: Dustin H Date: Sun, 25 Apr 2021 11:06:11 -0400 Subject: [PATCH] add go.mod, go mod tidy --- go.mod | 8 ++++++++ go.sum | 4 ++++ 2 files changed, 12 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..095e980 --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module github.com/djherbis/fscache + +go 1.13 + +require ( + gopkg.in/djherbis/atime.v1 v1.0.0 + gopkg.in/djherbis/stream.v1 v1.2.0 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..eca4692 --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +gopkg.in/djherbis/atime.v1 v1.0.0 h1:eMRqB/JrLKocla2PBPKgQYg/p5UG4L6AUAs92aP7F60= +gopkg.in/djherbis/atime.v1 v1.0.0/go.mod h1:hQIUStKmJfvf7xdh/wtK84qe+DsTV5LnA9lzxxtPpJ8= +gopkg.in/djherbis/stream.v1 v1.2.0 h1:3tZuXO+RK8opjw8/BJr780h+eAPwOFfLHCKRKyYxk3s= +gopkg.in/djherbis/stream.v1 v1.2.0/go.mod h1:aEV8CBVRmSpLamVJfM903Npic1IKmb2qS30VAZ+sssg=