chainqueue/chainqueue/cache/fs.py

11 lines
122 B
Python

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