From 78b085895c334f440e5f86b632ed554b5584f84a Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:52:09 -0700 Subject: [PATCH] Update doc comments --- core/conversations/src/service_traits.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/conversations/src/service_traits.rs b/core/conversations/src/service_traits.rs index 028a1c6..8e37253 100644 --- a/core/conversations/src/service_traits.rs +++ b/core/conversations/src/service_traits.rs @@ -1,3 +1,6 @@ +/// Service traits define the functionality which must be externally supplied by +/// platform clients. Platforms can alter the behaviour of the chat core by supplying +/// different implementations. use std::{fmt::Debug, fmt::Display}; use crate::types::{AccountId, AddressedEnvelope};