"""
MCP Handlers - модульные обработчики команд для NMP Plus
"""

from .core_handlers import CoreHandlers
from .code_handlers import CodeHandlers
from .architecture_handlers import ArchitectureHandlers
from .workflow_handlers import WorkflowHandlers
from .git_handlers import GitHandlers
from .context_handlers import ContextHandlers

__all__ = [
    'CoreHandlers',
    'CodeHandlers', 
    'ArchitectureHandlers',
    'WorkflowHandlers',
    'GitHandlers',
    'ContextHandlers'
] 

# MCP Handlers Package 