5 lines
111 B
Python
5 lines
111 B
Python
from marshmallow import Schema, fields
|
|
|
|
class ResetPassStart(Schema):
|
|
username = fields.Str(required=True)
|