(params, command)
| 58 | # Keeper CLI function |
| 59 | # ------------------------------------------------------ |
| 60 | def run_keeper_cli(params, command): |
| 61 | from keepercommander import cli |
| 62 | |
| 63 | cli.do_command(params, command) |
| 64 | # No return statement as this function runs the CLI command |
| 65 | # without returning anything in Python |
| 66 | |
| 67 | # ------------------------------------------------------ |
| 68 | # Lambda handler |