This commit is contained in:
CHIEFSOFT\ameye
2025-06-23 12:20:22 -04:00
parent 02dfc93d3b
commit 1279786780
10 changed files with 278 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
from marshmallow import Schema, fields
class UserSchema(Schema):
token = fields.Str(required=True)
uid = fields.Str(required=True)