did the needful
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-11-23 01:41:24 +01:00
parent 851f451354
commit fc36a08b70
8 changed files with 203 additions and 5 deletions

View File

@@ -1 +1,2 @@
#!/usr/bin/env python3
from .sample_schema import SampleSchema

View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python3
from marshmallow import fields, Schema
class SampleSchema(Schema):
date = fields.DateTime(required=True)
device_id = fields.Integer(required=True)