(component)
| 202 | @cli.command() |
| 203 | @click.argument("component", type=click.Choice([component.value for component in SharedComponent])) |
| 204 | def share(component): |
| 205 | selected_component = str(component).lower() |
| 206 | if selected_component == SharedComponent.LOG.value.lower(): |
| 207 | shared_log() |
| 208 | else: |
| 209 | logger.error(f"component '{component}' is not supported!") |
| 210 | |
| 211 | |
| 212 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected