Files

7 lines
162 B
Python

"""UI module for console output and interaction."""
from .console import ConsoleUI
from .argparse import create_parser
__all__ = ["ConsoleUI", "create_parser"]