Files
hpc/internal/storage/minio_test.go
dailz c861ff3adf feat(storage): add ObjectStorage interface and MinIO client
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>
2026-04-15 09:22:33 +08:00

8 lines
140 B
Go

package storage
import "testing"
func TestMinioClientImplementsObjectStorage(t *testing.T) {
var _ ObjectStorage = (*MinioClient)(nil)
}