persona-finance-tracker-demo/app/models/__init__.py
2025-09-13 17:40:23 +05:30

12 lines
328 B
Python

"""
Database Models
This module contains SQLAlchemy model definitions for the Personal Finance API.
Models are implemented in separate files and imported here for easy access.
"""
from .category import Category
from .transaction import Transaction
# Export all models for easy importing
__all__ = ['Category', 'Transaction']