diff options
| author | Shulhan <ms@kilabit.info> | 2022-10-19 18:44:47 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-10-19 18:54:29 +0700 |
| commit | bc1c453eb8a3c8b5bac406c5c4f09af06034247c (patch) | |
| tree | 57588c03d7e9b7a935f678e80700a43b158f4394 /go.mod | |
| download | duitku-bc1c453eb8a3c8b5bac406c5c4f09af06034247c.tar.xz | |
duitku: library and HTTP client for duitku.com
Currently, the client provide API for fetching list of banks for
disbursement.
See https://docs.duitku.com/ for reference.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +// SPDX-FileCopyrightText: 2022 M. Shulhan <ms@kilabit.info> +// SPDX-License-Identifier: GPL-3.0-or-later + +module git.sr.ht/~shulhan/duitku + +go 1.19 + +require github.com/shuLhan/share v0.41.2 + +require ( + golang.org/x/net v0.0.0-20220907135653-1e95f45603a7 // indirect + golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect +) |
