Files
govoplan/tools/assessments/govoplan_assessment/__init__.py
T
zemion 2c56a0fc11
Dependency Audit / dependency-audit (push) Failing after 9s
Deployment Installer / deployment-installer (push) Successful in 6s
Security Audit / security-audit (push) Failing after 8s
feat: enforce signed target maturity evidence
2026-08-02 03:41:09 +02:00

16 lines
365 B
Python

"""Repeatable GovOPlaN product-assessment tooling."""
from .capability_fit import (
enforce_required_boundary_scopes,
render_review,
review_capability_fit,
)
from .evidence import collect_installed_composition
__all__ = (
"collect_installed_composition",
"enforce_required_boundary_scopes",
"render_review",
"review_capability_fit",
)