chainqueue/chainqueue/cache/fs.py
2022-03-13 15:40:45 +00:00

11 lines
122 B
Python

# local imports
from .base import Cache
class FsCache(Cache):
def __init__(self, path):
self.path = path