6 lines
97 B
Python
6 lines
97 B
Python
from marshmallow import Schema, fields
|
|
|
|
|
|
class MessageSchema(Schema):
|
|
message = fields.Str()
|