mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-11 04:10:44 +00:00
10 lines
380 B
TypeScript
10 lines
380 B
TypeScript
import type { OutboundSendDeps } from "../infra/outbound/send-deps.js";
|
|
import type { CliDeps } from "./deps.types.js";
|
|
import { createOutboundSendDepsFromCliSource } from "./outbound-send-mapping.js";
|
|
|
|
export type { CliDeps } from "./deps.types.js";
|
|
|
|
export function createOutboundSendDeps(deps: CliDeps): OutboundSendDeps {
|
|
return createOutboundSendDepsFromCliSource(deps);
|
|
}
|