7 lines
108 B
Python
7 lines
108 B
Python
|
from . import Config
|
||
|
|
||
|
|
||
|
class ProductionConfig(Config):
|
||
|
"""生产模式下的配置"""
|
||
|
DEBUG = False
|