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
« prev ^ index » next coverage.py v7.14.0, created at 2026-07-16 12:51 +0000
1"""Command implementations for the Rhiza CLI.
3Implementation functions that back the Typer commands in `rhiza.cli`.
4Run ``rhiza <command> --help`` for usage details.
5"""
7from .sync import sync
9__all__ = ["sync"]