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
+13
View File
@@ -0,0 +1,13 @@
from src.bank_client import BankClient
from src.actual_client import ActualClient
def main():
print("Starting synchronization...")
bank = BankClient()
actual = ActualClient()
# Logic to fetch from bank and push to actual
print("Sync complete.")
if __name__ == "__main__":
main()