mcp-quiz-server
Version:
🧠AI-Powered Quiz Management via Model Context Protocol (MCP) - Create, manage, and take quizzes directly from VS Code, Claude, and other AI agents.
27 lines (25 loc) • 1.18 kB
text/typescript
/**
* @moduleName: Quiz Components Index
* @version: 2.0.0
* @since: 2025-07-26
* @lastUpdated: 2025-07-26
* @projectSummary: Enhanced MCP Quiz Server - Quiz Components Barrel Export
* @techStack: TypeScript, ES6 Modules
* @dependency: All quiz components
* @interModuleDependency: Central export point for all quiz-related components
* @requirementsTraceability:
* {@link Requirements.REQ_ARCH_001} (Component Integration System)
* {@link Requirements.REQ_REFACTOR_002} (Phase 2 Integration)
* @briefDescription: Barrel export for all quiz components enabling clean imports
* @methods: N/A (export only)
* @contributors: GitHub Copilot
* @examples:
* - import { QuizContent, AnswerHandler, NavigationController } from './quiz/index';
* @vulnerabilitiesAssessment: Export only, no runtime vulnerabilities
*/
export { AnswerHandler } from './AnswerHandler';
export { EventManagement } from './EventManagement';
export { FeedbackManager } from './FeedbackManager';
export { NavigationController } from './NavigationController';
export { ProgressTracker } from './ProgressTracker';
export { QuizContent } from './QuizContent';