freeleaps-service-hub/apps/devops/app/common/models/__init__.py
2025-06-07 11:32:48 -07:00

6 lines
278 B
Python

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