From 62a14f258c92d62617fa24cdf879d16f7a41e5b0 Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Sat, 11 May 2024 16:43:51 +0700 Subject: [PATCH] Create account_manager.py --- core/account_manager.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 core/account_manager.py diff --git a/core/account_manager.py b/core/account_manager.py new file mode 100644 index 000000000..bda7e5344 --- /dev/null +++ b/core/account_manager.py @@ -0,0 +1,4 @@ +# Use type hints and docstrings for better code readability +def create_account(user_id: int, account_type: str) -> Account: + """Create a new account for a user""" + #...