Coverage for compiler_admin/commands/ls/orgs.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-05-27 21:14 +0000

1import click 

2 

3from compiler_admin.services.google import GoogleOrgs 

4 

5 

6@click.command() 

7def orgs(**kwargs): 

8 """List org units in the Compiler Google workspace.""" 

9 output = GoogleOrgs().get(**kwargs) 

10 click.echo(output)