progress on jwt

This commit is contained in:
lennyaiko
2025-04-03 17:04:39 +01:00
parent aac09bb3a1
commit f6a3938901
3 changed files with 7 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
from marshmallow import Schema, fields
class AuthorizeRequestSchema(Schema):
username = fields.Str(required=True)
password = fields.Str(required=True)
View File