mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-07 19:18:35 +03:00
9 lines
145 B
Python
9 lines
145 B
Python
from functools import lru_cache
|
|
|
|
from app.shared.settings import Settings
|
|
|
|
|
|
@lru_cache
|
|
def get_settings():
|
|
return Settings() # type: ignore
|