2024-01-03 11:21:01 +08:00
2024-01-03 11:21:01 +08:00
2024-01-03 11:00:23 +08:00
2024-01-03 11:21:01 +08:00
2024-01-03 11:21:01 +08:00

Simple MinIO Wrapper For Clojure

Support For The Last MinIO Java Library

io.minio/minio 8.5.7

Usage:

//deps.edn
{com.mazhangjing/simple-minio-clj 
  {:git/url "https://github.com/corkine/simple-minio-clj.git"
   :git/sha "last-sha"}}
(require 'minio)
(def c (minio/connect "URL" "AK" "SK"))
(minio/list-buckets c)
(minio/make-bucket c :test-bucket)
(minio/put-object c :test-bucket "deps.edn")
(minio/list-objects c :test-bucket)
(minio/remove-bucket! c :test-bucket)
Description
Simple MinIO Clojure Wrapper
Readme 24 KiB
Languages
Clojure 100%