feat: add platform-infra kafka event bus poc

This commit is contained in:
Codex
2026-06-28 09:28:38 +00:00
parent 0eb700f07e
commit e8ca6ff009
5 changed files with 1358 additions and 2 deletions
+4
View File
@@ -60,6 +60,10 @@ export async function runPlatformInfraCommand(config: UniDeskConfig, args: strin
const { runSecretPlaneCommand } = await import("../platform-infra-secret-plane");
return await runSecretPlaneCommand(config, args.slice(1));
}
if (target === "kafka") {
const { runPlatformInfraKafkaCommand } = await import("../platform-infra-kafka");
return await runPlatformInfraKafkaCommand(config, args.slice(1));
}
if (target !== "sub2api") return unsupported(args);
if (action === "plan" || action === undefined) {
const planArgs = args.slice(2);