10 lines
203 B
Python
10 lines
203 B
Python
#!/usr/bin/env python3
|
|
from marshmallow import fields
|
|
from marshmallow_sqlalchemy import ModelSchema
|
|
from model import Details
|
|
|
|
|
|
class DetailsSchema(ModelSchema):
|
|
class Meta:
|
|
model = Details
|