openclaw/src/commands/channels.ts

14 lines
656 B
TypeScript

export type { ChannelsAddOptions } from "./channels/add.js";
export { channelsAddCommand } from "./channels/add.js";
export type { ChannelsListOptions } from "./channels/list.js";
export { channelsListCommand } from "./channels/list.js";
export type { ChannelsLogsOptions } from "./channels/logs.js";
export { channelsLogsCommand } from "./channels/logs.js";
export type { ChannelsRemoveOptions } from "./channels/remove.js";
export { channelsRemoveCommand } from "./channels/remove.js";
export type { ChannelsStatusOptions } from "./channels/status.js";
export {
channelsStatusCommand,
formatGatewayChannelsStatusLines,
} from "./channels/status.js";