From 91fb9699728859a4796f1e242384f964f16307ee Mon Sep 17 00:00:00 2001 From: administrator Date: Thu, 15 Feb 2024 17:46:35 +0800 Subject: [PATCH] Add app/client.py --- app/client.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/client.py diff --git a/app/client.py b/app/client.py new file mode 100644 index 0000000..812dc3c --- /dev/null +++ b/app/client.py @@ -0,0 +1,6 @@ +from typing import NewType, TypedDict + +UserID = NewType("UserID", int) +class User(TypedDict): + userId: UserID + name: str \ No newline at end of file