The program-level Capability model (provides/consumes) was a vestige of an earlier design superseded by the deployment-level requires/Requirement graph. It was read only into a diagnostic node and surfaced as an always-empty 'Capabilities' panel; nothing acted on it. Removed from manifest, relations, the CLI re-export, and the System Map.
34 lines
696 B
Python
34 lines
696 B
Python
"""Re-export from castle-core for backward compatibility."""
|
|
|
|
from castle_core.manifest import * # noqa: F401, F403
|
|
from castle_core.manifest import ( # noqa: F401 — explicit re-exports for type checkers
|
|
BuildSpec,
|
|
CaddyDeployment,
|
|
CommandsSpec,
|
|
DefaultsSpec,
|
|
DeploymentBase,
|
|
DeploymentSpec,
|
|
EnvMap,
|
|
ExposeSpec,
|
|
HttpExposeSpec,
|
|
HttpInternal,
|
|
LaunchBase,
|
|
LaunchSpec,
|
|
ManageSpec,
|
|
PathDeployment,
|
|
ProgramSpec,
|
|
Reach,
|
|
ReadinessHttpGet,
|
|
RemoteDeployment,
|
|
Requirement,
|
|
RestartPolicy,
|
|
RunCommand,
|
|
RunCompose,
|
|
RunContainer,
|
|
RunNode,
|
|
RunPython,
|
|
SystemdDeployment,
|
|
SystemdSpec,
|
|
kind_for,
|
|
)
|