test: remove stale unused imports

This commit is contained in:
Shakker
2026-05-09 11:26:33 +01:00
parent 8952d74b9a
commit 01741f81f8
69 changed files with 32 additions and 234 deletions

View File

@@ -21,12 +21,7 @@ import {
listRuntimeVideoGenerationProviders,
} from "../../video-generation/runtime.js";
import { listWebSearchProviders, runWebSearch } from "../../web-search/runtime.js";
import {
gatewaySubagentState,
setGatewayNodesRuntime,
setGatewaySubagentRuntime,
clearGatewaySubagentRuntime,
} from "./gateway-bindings.js";
import { gatewaySubagentState } from "./gateway-bindings.js";
import { createRuntimeAgent } from "./runtime-agent.js";
import { defineCachedValue } from "./runtime-cache.js";
import { createRuntimeChannel } from "./runtime-channel.js";

View File

@@ -1,5 +1,4 @@
import type { OpenClawConfig } from "../../config/types.openclaw.js";
import type { DetachedTaskLifecycleRuntime } from "../../tasks/detached-task-runtime-contract.js";
import type { TaskDeliveryState } from "../../tasks/task-registry.types.js";
import type { OpenClawPluginToolContext } from "../tool-types.js";
import type { PluginRuntimeTaskFlow } from "./runtime-taskflow.types.js";