(params, kwargs)
| 47 | # Keeper JSON report function |
| 48 | # ------------------------------------------------------ |
| 49 | def get_keeper_report(params, kwargs): |
| 50 | from keepercommander.commands.aram import AuditReportCommand |
| 51 | from json import loads |
| 52 | |
| 53 | report_class = AuditReportCommand() |
| 54 | report = report_class.execute(params, **kwargs) |
| 55 | return loads(report) |
| 56 | |
| 57 | # ------------------------------------------------------ |
| 58 | # Keeper CLI function |
no test coverage detected