9 lines
146 B
Python
9 lines
146 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
from repository.config import RedisSettings
|
||
|
|
||
|
|
||
|
@dataclass(frozen=True)
|
||
|
class Settings:
|
||
|
redis: RedisSettings
|