__init__.py 201 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 from functools import lru_cache from db import get_data_dao from .data_service import DataService @lru_cache() def get_data_service(): data_dao = get_data_dao() return DataService(data_dao)