UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

15 lines (14 loc) 404 B
//#region src/channels/plugins/status-state.ts /** * Human-readable channel status-state labels for status output. */ function formatChannelStatusState(statusState) { switch (statusState) { case "linked": return "linked"; case "not-linked": return "not linked"; case "unstable": return "auth stabilizing"; default: return statusState; } } //#endregion export { formatChannelStatusState as t };