throw out marshmallow
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-03-31 16:51:31 +02:00
parent fefbb63f67
commit 479ca0f44d
10 changed files with 102 additions and 75 deletions

View File

@@ -1,25 +0,0 @@
#!/usr/bin/env python3
from marshmallow import Schema, fields
"""
Schemas of input objects
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "schemas"
__version__text__ = "1"
class SampleSchema(Schema):
""" /v1/email/pay - POST
Parameters:
- date (date)
- device_id (str)
"""
date = fields.Date(required=True)
device_id = fields.Str(required=True)