Coverage for src/schemas/external_schema.py : 100%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# External Schemas
2from src import ma
4from src.model import ExternalModel
5from src.utils import SQLAlchemyAutoSchema
7from src.utils import DTOSchema
10class ExternalMeta:
11 model = ExternalModel
14class ExternalBase(SQLAlchemyAutoSchema):
15 class Meta(ExternalMeta):
16 fields = ("service_id", "service_name")