refactor(cli): split tjwater cli modules
Agent CI/CD / deploy-fallback-log (push) Has been cancelled
Agent CI/CD / docker-image (push) Has been cancelled

This commit is contained in:
2026-06-07 19:43:44 +08:00
parent ff87817fb5
commit 93d70da8be
23 changed files with 1720 additions and 740 deletions
+15
View File
@@ -0,0 +1,15 @@
import { analysisHandlers } from "./commands/analysis.js";
import { componentHandlers } from "./commands/component.js";
import { dataHandlers } from "./commands/data.js";
import { networkHandlers } from "./commands/network.js";
import { simulationHandlers } from "./commands/simulation.js";
import type { HandlerMap } from "./core/types.js";
export const handlers: HandlerMap = {
"__noop": async () => {},
...networkHandlers,
...componentHandlers,
...simulationHandlers,
...analysisHandlers,
...dataHandlers,
};