14 lines
422 B
Python
14 lines
422 B
Python
"""Identity packs — on-disk, content-addressed IdentityManifolds.
|
|
|
|
See ``docs/identity_packs.md`` for the pack format, loader contract, and
|
|
authoring guide. See ``docs/adr/ADR-0027-identity-packs.md`` for
|
|
the decision record.
|
|
"""
|
|
|
|
from packs.identity.loader import (
|
|
IdentityPackError,
|
|
available_packs,
|
|
load_identity_manifold,
|
|
)
|
|
|
|
__all__ = ["IdentityPackError", "available_packs", "load_identity_manifold"]
|