jmap-contacts-client 0.1.0

JMAP Contacts HTTP client — extension trait over jmap-base-client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// jmap-contacts-client — JMAP Contacts method implementations.
// Depends on jmap-base-client for transport, auth, and session.
// See PLAN.md for the full implementation plan.

/// Extension trait adding JMAP Contacts methods to [`jmap_base_client::JmapClient`].
///
/// Import this trait to use: `use jmap_contacts_client::JmapContactsExt;`
pub trait JmapContactsExt {
    // Methods will be added in implementation beads.
}

impl JmapContactsExt for jmap_base_client::JmapClient {}