freeleaps-service-hub/apps/devops/app/common/models/__init__.py
zhenyus 979fcd298c Add DevOps reconciliation models and integrate into deployment service
Signed-off-by: zhenyus <zhenyus@mathmast.com>
2025-06-23 16:46:06 +08:00

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]