init commit

This commit is contained in:
2023-08-10 12:27:18 +08:00
commit 56f93165ba
21 changed files with 457 additions and 0 deletions

0
app/config/__init__.py Normal file
View File

11
app/config/config.py Normal file
View File

@@ -0,0 +1,11 @@
import os
from chassis.config import Config as _Config
class Config(_Config):
"""
配置
"""
RABBITMQ_URI = os.getenv('RABBITMQ_URI')