diff options
| author | Shulhan <ms@kilabit.info> | 2021-04-06 19:42:12 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-04-06 19:42:12 +0700 |
| commit | 11b20e5fdc1b47349e70c0c8075c116aefe45685 (patch) | |
| tree | ccc0e1e4a8f45621fd0d61da825ef99a253377c9 | |
| parent | 82629a91da42c3932cb0660b11104884a6ff608b (diff) | |
| download | pakakeh.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.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
