Loopback GET /health, nats-leaf:// rewrite, subject request-reply tests. Do not replace pfc-py-admin. NpeRequired stays on the package surface.
15 lines
575 B
Python
15 lines
575 B
Python
# Public package surface for the readable Python spec.
|
|
from .signed_config import SignedConfig, UnsignedConfig # signed wrapper load/save
|
|
from .envelope import PassthroughEnvelope # dest-in-clear, body ciphertext
|
|
from .error_bundle import NetworkErrorBundle # system-key + sender-only
|
|
from .admin_history import AdminHistory # DataCube-shaped append-only config log
|
|
from .npe_adapter import NpeRequired # fail-closed NPE
|
|
|
|
__all__ = [
|
|
"SignedConfig",
|
|
"UnsignedConfig",
|
|
"PassthroughEnvelope",
|
|
"NetworkErrorBundle",
|
|
"AdminHistory",
|
|
"NpeRequired",
|
|
]
|