12 lines
154 B
Python
12 lines
154 B
Python
|
import os
|
||
|
|
||
|
from chassis.config import Config as _Config
|
||
|
|
||
|
|
||
|
class Config(_Config):
|
||
|
"""
|
||
|
配置
|
||
|
"""
|
||
|
RABBITMQ_URI = os.getenv('RABBITMQ_URI')
|
||
|
|