Coverage for src / mysingle / cli / utils / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-02 00:58 +0900
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-02 00:58 +0900
1"""CLI utilities."""
3from .console import (
4 ask_choice,
5 ask_confirm,
6 ask_text,
7 console,
8 create_table,
9 print_error,
10 print_header,
11 print_info,
12 print_success,
13 print_warning,
14)
16__all__ = [
17 "console",
18 "print_success",
19 "print_error",
20 "print_warning",
21 "print_info",
22 "print_header",
23 "ask_choice",
24 "ask_confirm",
25 "ask_text",
26 "create_table",
27]