7 lines
383 B
Python
7 lines
383 B
Python
from app.common.models.code_depot.code_depot import CodeDepotDoc
|
|
from app.common.models.deployment.deployment import Deployment
|
|
from app.common.models.deployment.deployment import DevOpsReconcileRequest, DevOpsReconcileOperationType
|
|
|
|
# list of beanie document models,
|
|
# must add here so that the mongo db collection can be automatically created
|
|
db_models = [Deployment, CodeDepotDoc] |