In the interest of performance, convert the fetcher and uploader to golang and use the minio library, rather than repeated calls to the server with the command line
24 lines
826 B
AMPL
24 lines
826 B
AMPL
module main
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/go-ini/ini v1.67.0 // indirect
|
|
github.com/goccy/go-json v0.10.3 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/klauspost/compress v1.17.11 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
github.com/minio/minio-go/v7 v7.0.82 // indirect
|
|
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/rs/xid v1.6.0 // indirect
|
|
github.com/schollz/progressbar/v3 v3.17.1 // indirect
|
|
golang.org/x/crypto v0.28.0 // indirect
|
|
golang.org/x/net v0.30.0 // indirect
|
|
golang.org/x/sys v0.27.0 // indirect
|
|
golang.org/x/term v0.26.0 // indirect
|
|
golang.org/x/text v0.19.0 // indirect
|
|
)
|