jmap_chat_client/lib.rs
1// jmap-chat-client — auth-agnostic JMAP Chat HTTP client with WebSocket and SSE support.
2// See PLAN.md for the full implementation plan.
3
4/// Extension trait adding JMAP Chat methods to `JmapClient` (from `jmap-base-client`).
5///
6/// Import this trait to use: `use jmap_chat_client::JmapChatExt;`
7///
8/// The `impl JmapChatExt for JmapClient` block will be added once `jmap-base-client`
9/// is wired as a dependency (see PLAN.md "Key Design Decisions", item 3).
10pub trait JmapChatExt {
11 // Methods will be added in implementation beads.
12}