feat: add MQ_HOST var
parent
037bfaa0c3
commit
dcd7d09c59
@ -0,0 +1,14 @@
|
||||
from pydantic import Field
|
||||
from pydantic_settings import BaseSettings
|
||||
|
||||
|
||||
class MqInfo(BaseSettings):
|
||||
"""
|
||||
Packaging build information
|
||||
"""
|
||||
|
||||
MQ_HOST: str = Field(
|
||||
description="Rabbit Mq host",
|
||||
default="127.0.0.1",
|
||||
)
|
||||
|
||||
Loading…
Reference in New Issue