9 lines
154 B
Python
9 lines
154 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ConnectionParams:
|
|
host: str = "localhost"
|
|
port: int = 5672
|
|
vhost: str = "/"
|