adds target-exchange and initial migrations

This commit is contained in:
Gardient
2021-09-19 23:55:36 +03:00
parent cc44c4056e
commit 472f682c58
11 changed files with 273 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
from marshmallow import Schema, fields
class TargetExchangeSchema(Schema):
id = fields.Int()
name = fields.Str()
target_exchange_schema = TargetExchangeSchema()
target_exchanges_schema = TargetExchangeSchema(many=True)