File size: 145 Bytes
7d2fea2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from functools import lru_cache

from models.config import AppSettings


@lru_cache
def get_settings() -> AppSettings:
    return AppSettings()