1234567891011121314151617181920 |
- class Config(object):
-
- def __init__(self):
- pass
- class DevelopmentConfig(Config):
- def __init__(self):
- pass
- class ProductionConfig(Config):
-
- def __init__(self):
- pass
- config= {
- "default": DevelopmentConfig,
- "develop": DevelopmentConfig,
- "production": ProductionConfig
- }
|