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
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-05 10:07 +0000
1"""Rhiza tools module entry point.
3This module serves as the entry point for the Rhiza Tools command-line interface (CLI).
4"""
6from rhiza_tools.cli import app
8if __name__ == "__main__":
9 app()