diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/storage.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/storage.go b/core/storage.go index 6403f5f..f3225d8 100644 --- a/core/storage.go +++ b/core/storage.go @@ -5,12 +5,6 @@ import "errors" //ErrStop is used to stop a ForEach function in an Iter var ErrStop = errors.New("stop iter") -// Storage storage of objects and references -type Storage interface { - ObjectStorage() ObjectStorage - ReferenceStorage() ReferenceStorage -} - // ObjectStorage generic storage of objects type ObjectStorage interface { NewObject() Object |