Initial Multipart Upload

This commit is contained in:
2026-02-22 13:42:23 +01:00
parent 65a7a7eef8
commit 9b5035dfa0
6 changed files with 129 additions and 4 deletions

View File

@@ -97,3 +97,11 @@ func (s *ObjectService) DeleteBucket(bucket string) error {
func (s *ObjectService) ListBuckets() ([]string, error) {
return s.metadataHandler.ListBuckets()
}
func (s *ObjectService) CreateMultipartUpload(bucket, key string) (*models.MultipartUpload, error) {
return s.metadataHandler.CreateMultipartUpload(bucket, key)
}
func (s *ObjectService) PutMultipartObject(bucket, key, uploadId string, input io.Reader) (*models.MultipartUpload, error) {
return nil, nil
}