mirror of
https://github.com/minio/minio.git
synced 2026-02-08 11:50:15 -05:00
Add support for sse-s3 encryption with vault as KMS. Also refactoring code to make use of headers and functions defined in crypto package and clean up duplicated code.
12 lines
145 B
Makefile
12 lines
145 B
Makefile
default: test
|
|
|
|
test:
|
|
go vet ./...
|
|
go test -race ./...
|
|
|
|
updatedeps:
|
|
go get -f -t -u ./...
|
|
go get -f -u ./...
|
|
|
|
.PHONY: default test updatedeps
|