mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
10 lines
196 B
Python
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'
|