Spaces:
Sleeping
Sleeping
File size: 461 Bytes
796da7c | 1 2 3 4 5 6 7 8 9 10 11 12 | """
permanence.domains — concrete domain packages.
Each subpackage registers itself with the core registry at import time.
The top-level ``__init__`` imports them all so the registry is fully
populated on ``from permanence import domains`` or ``import permanence``.
"""
from . import meridian # noqa: F401 — side effect: registers the domain
from . import devtools # noqa: F401 — side effect: registers the domain
__all__ = ["meridian", "devtools"]
|