refactor: repo reorganization for clearer separation of concerns #477

Merged
didericis merged 30 commits from refactor/repo-reorg into fix/db-off-data-plane-469 2026-07-24 19:24:56 -04:00
2 changed files with 21 additions and 8 deletions
Showing only changes of commit bef45348f5 - Show all commits
+2 -7
View File
@@ -16,15 +16,10 @@ from typing import Mapping
from ..log import warn
from .util import ManifestError, as_json_object
from .agent import ManifestAgent, ManifestAgentProvider
from .agent import ManifestAgent
from .bottle import ManifestBottle
from .egress import (
EGRESS_AUTH_SCHEMES,
ManifestEgressConfig,
ManifestEgressRoute,
)
from .extends import merge_bottles_runtime, resolve_bottles
from .git import ManifestGitEntry, ManifestGitUser, ManifestKeyConfig
from .git import ManifestGitUser
from .loader import (
check_stale_json,
load_bottle_chain_from_dir,
+19 -1
View File
@@ -82,4 +82,22 @@ def __getattr__(name: str) -> Any:
return value
__all__ = list(_LAZY)
__all__ = [
"BottleRecord",
"RegistryStore",
"new_identity_token",
"BrokerAuthError",
"LaunchBroker",
"LaunchRequest",
"StubBroker",
"sign_request",
"verify_request",
"DockerBroker",
"DockerBrokerError",
"Gateway",
"GatewayError",
"Orchestrator",
"OrchestratorServer",
"dispatch",
"make_server",
]