12 lines
328 B
Python
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']
|