diff options
author | NeonXP <i@neonxp.dev> | 2023-01-04 18:44:58 +0300 |
---|---|---|
committer | NeonXP <i@neonxp.dev> | 2023-01-04 18:44:58 +0300 |
commit | 8716ac3e650075525cab7fb5caf1aa62b3efe55b (patch) | |
tree | f34dcb33400ef6bfd7f01b55a04f59784505c506 /internal/storage/contract.go | |
parent | e91712e388c530dd5bdfb46f028157a62a60b1e3 (diff) |
Diffstat (limited to 'internal/storage/contract.go')
-rw-r--r-- | internal/storage/contract.go | 14 |
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 -} |