UNPKG

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.

20 lines (19 loc) • 1.11 kB
"use strict"; /** * @fileoverview Setup Module Index - Exports all setup components * @version 1.0.0 * @since 2025-07-31 * @module Setup * @description Central export point for all setup wizard components */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.SetupOrchestrator = exports.MinimalSetupWizard = exports.AsciiAnimations = void 0; var AsciiAnimations_1 = require("./AsciiAnimations"); Object.defineProperty(exports, "AsciiAnimations", { enumerable: true, get: function () { return __importDefault(AsciiAnimations_1).default; } }); var MinimalSetupWizard_1 = require("./MinimalSetupWizard"); Object.defineProperty(exports, "MinimalSetupWizard", { enumerable: true, get: function () { return MinimalSetupWizard_1.MinimalSetupWizard; } }); var SetupOrchestrator_1 = require("./SetupOrchestrator"); Object.defineProperty(exports, "SetupOrchestrator", { enumerable: true, get: function () { return SetupOrchestrator_1.SetupOrchestrator; } });