audit-labs/audit-report
Turn audit-tools evidence packages into control-mapped, auditor-ready reports.
clone: git clone https://gitbay.org/audit-labs/audit-report.git
v0.1.0: audit_report/__main__.py · raw
1"""Enable ``python -m audit_report``."""
2
3from .cli import main
4
5if __name__ == "__main__":
6 raise SystemExit(main())