Add app/client.py

This commit is contained in:
2024-02-15 17:46:35 +08:00
parent 5e16b96092
commit 91fb969972

6
app/client.py Normal file
View File

@@ -0,0 +1,6 @@
from typing import NewType, TypedDict
UserID = NewType("UserID", int)
class User(TypedDict):
userId: UserID
name: str