From 1f01f403381b13a72f8975f5f64110f8cd9b0393 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Tue, 9 Jan 2024 14:55:52 -0500 Subject: [PATCH] fix: implement Parts getter --- storage/storage.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/storage/storage.go b/storage/storage.go index bf817e8..07eb4e3 100644 --- a/storage/storage.go +++ b/storage/storage.go @@ -38,8 +38,7 @@ func (s *StorageLocationImpl) Type() int { } func (s *StorageLocationImpl) Parts() []string { - //TODO implement me - panic("implement me") + return s.parts } func (s *StorageLocationImpl) BinaryParts() [][]byte {