Coverage for src / rhiza / __main__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2025-12-29 01:59 +0000

1"""Rhiza module entry point. 

2 

3This module allows running the Rhiza CLI with `python -m rhiza` by 

4delegating execution to the Typer application defined in `rhiza.cli`. 

5""" 

6 

7from rhiza.cli import app 

8 

9if __name__ == "__main__": 

10 app()