11 lines
213 B
Python
11 lines
213 B
Python
|
#!/usr/bin/env python3
|
||
|
from marshmallow import fields
|
||
|
from marshmallow_sqlalchemy import ModelSchema
|
||
|
from model import SVMDetails
|
||
|
|
||
|
|
||
|
class SVMDetailsSchema(ModelSchema):
|
||
|
|
||
|
class Meta:
|
||
|
model = SVMDetails
|