Add func delete message

This commit is contained in:
2026-01-26 11:47:17 +03:00
parent 8ae1ef6040
commit 1dce2c7b0c
6 changed files with 112 additions and 20 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ class Settings(BaseSettings):
def RABBITMQ_URL(self) -> str:
return f"amqp://{self.RMQ_USER}:{self.RMQ_PASS}@{self.RMQ_HOST}:{self.RMQ_PORT}//"
model_config = SettingsConfigDict(env_file="../.env.prod", extra="allow")
model_config = SettingsConfigDict(env_file="../.env", extra="allow")
settings: Settings = Settings()