summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2021-04-06 19:42:12 +0700
committerShulhan <ms@kilabit.info>2021-04-06 19:42:12 +0700
commit11b20e5fdc1b47349e70c0c8075c116aefe45685 (patch)
treeccc0e1e4a8f45621fd0d61da825ef99a253377c9
parent82629a91da42c3932cb0660b11104884a6ff608b (diff)
downloadpakakeh.go-11b20e5fdc1b47349e70c0c8075c116aefe45685.tar.xz
go.mod: set the minimum Go version to 1.16
Commit 4cdd6b01c1 "http: add method to generate standard HTTP request on Client" use the io.NopCloser thats only available in Go 1.16. Either we move backward by replacing it with ioutil.NopCloser or we move forward by setting the minimum Go version to 1.16. We choose to move forward.
-rw-r--r--go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 993971e2..a7db9629 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/shuLhan/share
-go 1.14
+go 1.16
require (
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2