Add ObjectStorage interface (11 methods) with MinioClient implementation using minio-go Core. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
8 lines
140 B
Go
8 lines
140 B
Go
package storage
|
|
|
|
import "testing"
|
|
|
|
func TestMinioClientImplementsObjectStorage(t *testing.T) {
|
|
var _ ObjectStorage = (*MinioClient)(nil)
|
|
}
|