13 lines
356 B
Python
13 lines
356 B
Python
"""
|
|
API Blueprints
|
|
|
|
This module contains Flask blueprints for API endpoints.
|
|
Each major feature area has its own blueprint for clean organization.
|
|
"""
|
|
|
|
from .categories import categories_bp
|
|
from .transactions import transactions_bp
|
|
from .analytics import analytics_bp
|
|
|
|
# Export all blueprints
|
|
__all__ = ['categories_bp', 'transactions_bp', 'analytics_bp']
|