first commit

This commit is contained in:
2026-04-24 18:44:10 +02:00
commit 5fb5194468
12 changed files with 319 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from src.bank_client import BankClient
def main():
print("Starting bank authentication process...")
client = BankClient()
client.authenticate()
print("Authentication complete.")
if __name__ == "__main__":
main()