Coverage for src / tracekit / cli / __init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-11 23:04 +0000

1"""TraceKit Command-Line Interface. 

2 

3This module provides command-line tools for signal analysis workflows. 

4 

5 

6Example: 

7 $ tracekit --help 

8 $ tracekit characterize signal.wfm 

9 $ tracekit decode uart.wfm --protocol uart 

10""" 

11 

12from tracekit.cli.main import cli 

13 

14__all__ = ["cli"]