Update app/crud.py

This commit is contained in:
Cameron 2025-12-10 21:47:35 +00:00
parent 20d41c561d
commit 98c347cc39

View file

@ -6,3 +6,6 @@ def get_customers(db: Session):
def get_accounts(db: Session):
return db.query(models.Account).all()
def get_transactions(db: Session):
return db.query(models.Transactions).all()