f213/education-backend

View on GitHub
src/apps/amocrm/dto/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from apps.amocrm.dto.catalogs import AmoCRMCatalogsDTO
from apps.amocrm.dto.customer import AmoCRMCustomerDTO
from apps.amocrm.dto.groups import AmoCRMGroupsDTO
from apps.amocrm.dto.lead import AmoCRMLeadDTO
from apps.amocrm.dto.lead_note import AmoCRMLeadNoteDTO
from apps.amocrm.dto.lead_task import AmoCRMLeadTaskDTO
from apps.amocrm.dto.pipelines import AmoCRMPipelinesDTO
from apps.amocrm.dto.product import AmoCRMProductDTO
from apps.amocrm.dto.transaction import AmoCRMTransactionDTO
from apps.amocrm.dto.user_operator import AmoCRMUserOperatorDTO

__all__ = [
    "AmoCRMCatalogsDTO",
    "AmoCRMCustomerDTO",
    "AmoCRMGroupsDTO",
    "AmoCRMLeadDTO",
    "AmoCRMLeadNoteDTO",
    "AmoCRMLeadTaskDTO",
    "AmoCRMPipelinesDTO",
    "AmoCRMProductDTO",
    "AmoCRMTransactionDTO",
    "AmoCRMUserOperatorDTO",
]