mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-18 00:05:12 -05:00
11 lines
159 B
Python
11 lines
159 B
Python
from functools import lru_cache
|
|
|
|
from .data_access_layer import DatabaseAccessLayer
|
|
|
|
db = DatabaseAccessLayer()
|
|
|
|
|
|
@lru_cache
|
|
def get_database():
|
|
return db
|