Skeleton ready
This commit is contained in:
11
kernel/application/view/rabbitmq.py
Normal file
11
kernel/application/view/rabbitmq.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class RabbitMQ:
|
||||
host: str = "localhost"
|
||||
port: int = 5672
|
||||
user: str = "guest"
|
||||
password: str = "guest"
|
||||
timeout: int = 10
|
||||
vhost: str = "/"
|
||||
Reference in New Issue
Block a user