File size: 226 Bytes
0769ff3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""ENGRAM Protocol — Storage backends for .eng files."""

from kvcos.storage.backends import StorageBackend
from kvcos.storage.local import LocalStorageBackend

__all__ = [
    "StorageBackend",
    "LocalStorageBackend",
]