openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
12 lines (11 loc) • 411 B
JavaScript
import { t as pruneStaleCommandPollsCore } from "./command-poll-backoff-DeKW-baq.js";
//#region src/agents/command-poll-backoff.runtime.ts
/**
* Runtime seam for command poll backoff cleanup.
*/
/** Prune stale command polls using the production backoff implementation. */
function pruneStaleCommandPolls(...args) {
return pruneStaleCommandPollsCore(...args);
}
//#endregion
export { pruneStaleCommandPolls };