7 lines
116 B
Python
7 lines
116 B
Python
#!/usr/bin/env python3
|
|
from marshmallow import fields, Schema
|
|
|
|
|
|
class DefaultSchema(Schema):
|
|
id = fields.UUID()
|