Skeleton ready
This commit is contained in:
0
kernel/rabbitmq/view/__init__.py
Normal file
0
kernel/rabbitmq/view/__init__.py
Normal file
7
kernel/rabbitmq/view/authentication_params.py
Normal file
7
kernel/rabbitmq/view/authentication_params.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class AuthenticationParams:
|
||||
username: str = 'guest'
|
||||
password: str = 'guest'
|
||||
8
kernel/rabbitmq/view/connection_params.py
Normal file
8
kernel/rabbitmq/view/connection_params.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class ConnectionParams:
|
||||
host: str = "localhost"
|
||||
port: int = 5672
|
||||
vhost: str = "/"
|
||||
Reference in New Issue
Block a user