TandoorRecipes/cookbook/helper/cache_helper.py
2023-04-02 10:54:57 +02:00

10 lines
196 B
Python

class CacheHelper:
space = None
BASE_UNITS_CACHE_KEY = None
def __init__(self, space):
self.space = space
self.BASE_UNITS_CACHE_KEY = f'SPACE_{space.id}_BASE_UNITS'