model-service/model_service/schemas/default_schema.py

7 lines
116 B
Python
Raw Normal View History

2020-04-14 02:01:44 +02:00
#!/usr/bin/env python3
2020-04-14 17:26:33 +02:00
from marshmallow import fields, Schema
2020-04-14 02:01:44 +02:00
2020-04-14 17:26:33 +02:00
class DefaultSchema(Schema):
2020-04-14 14:02:35 +02:00
id = fields.UUID()