Implemeted getters

This commit is contained in:
2020-04-14 13:48:11 +02:00
parent 43a0fe0ca2
commit f97228b61c
9 changed files with 65 additions and 31 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
from marshmallow import fields
from marshmallow_sqlalchemy import ModelSchema
from model import AIModel
class AIModelSchema(ModelSchema):
class Meta:
model = AIModel