Coverage for src / rhiza / commands / __init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.14.0, created at 2026-07-16 12:51 +0000

1"""Command implementations for the Rhiza CLI. 

2 

3Implementation functions that back the Typer commands in `rhiza.cli`. 

4Run ``rhiza <command> --help`` for usage details. 

5""" 

6 

7from .sync import sync 

8 

9__all__ = ["sync"]