go.mod 480 B

12345678910111213141516171819
  1. module s3
  2. go 1.20
  3. require (
  4. github.com/aws/aws-sdk-go v1.49.10
  5. github.com/minio/minio-go v6.0.14+incompatible
  6. )
  7. require (
  8. github.com/go-ini/ini v1.67.0 // indirect
  9. github.com/jmespath/go-jmespath v0.4.0 // indirect
  10. github.com/mitchellh/go-homedir v1.1.0 // indirect
  11. github.com/stretchr/testify v1.8.4 // indirect
  12. golang.org/x/crypto v0.14.0 // indirect
  13. golang.org/x/net v0.17.0 // indirect
  14. golang.org/x/sys v0.13.0 // indirect
  15. golang.org/x/text v0.13.0 // indirect
  16. )