__init__.py 376 B

1234567891011
  1. """Input management package for CLI user input operations.
  2. This package provides centralized input handling with standardized styling
  3. and validation across the entire CLI application.
  4. """
  5. from .input_manager import InputManager
  6. from .input_settings import InputSettings
  7. from .prompt_manager import PromptHandler
  8. __all__ = ["InputManager", "InputSettings", "PromptHandler"]