From 7d122d244622c664a7f5d8d99efc739dba5e6a3d Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Fri, 28 Mar 2025 19:25:33 +0000 Subject: feat(filamento): disco features and identity categories according to registry --- filamento/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'filamento/src/lib.rs') diff --git a/filamento/src/lib.rs b/filamento/src/lib.rs index 89da1a3..bc946ae 100644 --- a/filamento/src/lib.rs +++ b/filamento/src/lib.rs @@ -36,6 +36,7 @@ use uuid::Uuid; pub mod chat; pub mod db; +pub mod disco; pub mod error; mod logic; pub mod presence; @@ -97,6 +98,8 @@ pub enum Command { /// send a message to a jid (any kind of jid that can receive a message, e.g. a user or a /// chatroom). if disconnected, will be cached so when client connects, message will be sent. SendMessage(JID, Body, oneshot::Sender>), + /// disco info request + DiscoInfo(JID, oneshot::Sender), } #[derive(Debug, Clone)] -- cgit