summaryrefslogtreecommitdiff
path: root/internal/storage/contract.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/storage/contract.go')
-rw-r--r--internal/storage/contract.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/storage/contract.go b/internal/storage/contract.go
deleted file mode 100644
index 5847bcc..0000000
--- a/internal/storage/contract.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package storage
-
-import (
- "context"
- "io"
-
- "go.neonxp.dev/djson/internal/model"
-)
-
-type Storage interface {
- io.Closer
- Commit(ctx context.Context, mut model.Mutation) error
- Load() chan model.Mutation
-}