10 lines
323 B
Python
10 lines
323 B
Python
|
|
"""informed-decision — presentation and binding surface for decisions.
|
||
|
|
|
||
|
|
This package must never contain an authorization decision. See ``INTENT.md``
|
||
|
|
and ``AGENTS.md``: ``access-engine`` is the only policy decision point.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .canonicalize import awareness_hash, view_hash
|
||
|
|
|
||
|
|
__all__ = ["view_hash", "awareness_hash"]
|