diff options
author | 2025-04-03 09:46:24 +0100 | |
---|---|---|
committer | 2025-04-03 09:46:24 +0100 | |
commit | 362a716150e40c4fb7a11a7487fb618a2cd25a4e (patch) | |
tree | f15ad2f6751180a96e8416fdaedea279be13ab68 /filamento/src/lib.rs | |
parent | 9b18e40d8ba5f891e077daa039632f81d5fd2f86 (diff) | |
download | luz-362a716150e40c4fb7a11a7487fb618a2cd25a4e.tar.gz luz-362a716150e40c4fb7a11a7487fb618a2cd25a4e.tar.bz2 luz-362a716150e40c4fb7a11a7487fb618a2cd25a4e.zip |
feat(filamento): caps 2.0 helper functions
Diffstat (limited to 'filamento/src/lib.rs')
-rw-r--r-- | filamento/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/filamento/src/lib.rs b/filamento/src/lib.rs index 6118f75..c44edca 100644 --- a/filamento/src/lib.rs +++ b/filamento/src/lib.rs @@ -35,6 +35,7 @@ use tracing::{debug, info}; use user::User; use uuid::Uuid; +pub mod caps; pub mod chat; pub mod db; pub mod disco; @@ -122,6 +123,8 @@ pub enum Command { }, /// change user nickname ChangeNick(String, oneshot::Sender<Result<(), NickError>>), + // /// get capability node + // GetCaps(String, oneshot::Sender<Result<Info, CapsError>>), } #[derive(Debug, Clone)] |