18 lines
648 B
Python
18 lines
648 B
Python
|
|
"""Routing lookup — read-only pointer layer over registry/routing/catalog.yaml.
|
||
|
|
|
||
|
|
This package never calls OpenBao, flex-auth, key-cape, ops-bridge, or any other
|
||
|
|
subsystem. It loads the machine-readable routing catalog and answers "who owns
|
||
|
|
this need and where is the authoritative doc". The one lane ops-warden executes
|
||
|
|
(SSH certificate issuance) is the only entry that carries authored steps.
|
||
|
|
"""
|
||
|
|
from warden.routing.catalog import Catalog, CatalogError, find_catalog_path, load_catalog
|
||
|
|
from warden.routing.models import RouteEntry
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"Catalog",
|
||
|
|
"CatalogError",
|
||
|
|
"RouteEntry",
|
||
|
|
"find_catalog_path",
|
||
|
|
"load_catalog",
|
||
|
|
]
|