├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── s3 │ └── main.go ├── commands.go ├── go.mod ├── go.sum ├── iface.go ├── internal └── features │ ├── cat.feature │ ├── get.feature │ ├── grep.feature │ ├── ls.feature │ ├── mb.feature │ ├── put.feature │ ├── rb.feature │ ├── rm.feature │ ├── step_definitions.go │ └── sync.feature ├── local.go ├── main.go ├── mocks.go └── s3.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | release/ 3 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/README.md -------------------------------------------------------------------------------- /cmd/s3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/cmd/s3/main.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/commands.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/go.sum -------------------------------------------------------------------------------- /iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/iface.go -------------------------------------------------------------------------------- /internal/features/cat.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/cat.feature -------------------------------------------------------------------------------- /internal/features/get.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/get.feature -------------------------------------------------------------------------------- /internal/features/grep.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/grep.feature -------------------------------------------------------------------------------- /internal/features/ls.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/ls.feature -------------------------------------------------------------------------------- /internal/features/mb.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/mb.feature -------------------------------------------------------------------------------- /internal/features/put.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/put.feature -------------------------------------------------------------------------------- /internal/features/rb.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/rb.feature -------------------------------------------------------------------------------- /internal/features/rm.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/rm.feature -------------------------------------------------------------------------------- /internal/features/step_definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/step_definitions.go -------------------------------------------------------------------------------- /internal/features/sync.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/internal/features/sync.feature -------------------------------------------------------------------------------- /local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/local.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/main.go -------------------------------------------------------------------------------- /mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/mocks.go -------------------------------------------------------------------------------- /s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barnybug/s3/HEAD/s3.go --------------------------------------------------------------------------------