Total Complexity | 0 |
Total Lines | 6 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from app import create_app |
||
2 | from config.app_config import ProductionLevelConfig |
||
3 | from config.db_config import RemoteDBConfig |
||
4 | |||
5 | application = create_app(ProductionLevelConfig, RemoteDBConfig) |
||
6 |