diff options
| author | Shulhan <ms@kilabit.info> | 2023-02-01 14:54:28 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-02-01 15:26:41 +0700 |
| commit | dd24a0248dc011fe43540b7a8f1487ed7d1e5d90 (patch) | |
| tree | 53c2a5d4997f10570aed07e43280a735fbee1b85 | |
| parent | a5b22d2d0d018d7822a492979f36470e9f9cc78c (diff) | |
| download | duitku-dd24a0248dc011fe43540b7a8f1487ed7d1e5d90.tar.xz | |
go.mod: update the share module
The latest share module provide function to marshal struct to url.Values
which we will need later for querying payment status.
| -rw-r--r-- | go.mod | 4 | ||||
| -rw-r--r-- | go.sum | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -5,9 +5,11 @@ module git.sr.ht/~shulhan/duitku go 1.19 -require github.com/shuLhan/share v0.41.2 +require github.com/shuLhan/share v0.42.1-0.20230201082435-894f4d4ae310 require ( golang.org/x/net v0.0.0-20220907135653-1e95f45603a7 // indirect golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect ) + +//replace github.com/shuLhan/share => ../share @@ -1,5 +1,5 @@ -github.com/shuLhan/share v0.41.2 h1:8fWCDqnQQJLeGt9FCv/wD+M1ypjAApYQez8xkHTMKpo= -github.com/shuLhan/share v0.41.2/go.mod h1:nus6RSASS+5P1ZUe89ciJZyp3v+IY1xqLdKwtnuGsaA= +github.com/shuLhan/share v0.42.1-0.20230201082435-894f4d4ae310 h1:QrtTBWeseBQvWSEz7IcOMpoaELnUCe2Oov+zdTeakM8= +github.com/shuLhan/share v0.42.1-0.20230201082435-894f4d4ae310/go.mod h1:nus6RSASS+5P1ZUe89ciJZyp3v+IY1xqLdKwtnuGsaA= golang.org/x/net v0.0.0-20220907135653-1e95f45603a7 h1:1WGATo9HAhkWMbfyuVU0tEFP88OIkUvwaHFveQPvzCQ= golang.org/x/net v0.0.0-20220907135653-1e95f45603a7/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/sys v0.0.0-20220908164124-27713097b956 h1:XeJjHH1KiLpKGb6lvMiksZ9l0fVUh+AmGcm0nOMEBOY= |
