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

6 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-28 05:48 +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)