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

3 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-05 10:07 +0000

1"""Rhiza tools module entry point. 

2 

3This module serves as the entry point for the Rhiza Tools command-line interface (CLI). 

4""" 

5 

6from rhiza_tools.cli import app 

7 

8if __name__ == "__main__": 

9 app()