Coverage for src/workstack/__init__.py: 67%

3 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-19 09:31 -0400

1"""workstack CLI entry point. 

2 

3This package provides a Click-based CLI for managing git worktrees in a 

4global worktrees directory. See `workstack --help` for details. 

5""" 

6 

7from workstack.cli.cli import cli 

8 

9 

10def main() -> None: 

11 """CLI entry point used by the `workstack` console script.""" 

12 cli()