9 lines
138 B
Python
9 lines
138 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class Redis:
|
|
host: str = "localhost"
|
|
port: int = 6379
|
|
db: int = 0
|