diff options
| author | 2025-05-05 18:40:05 +0100 | |
|---|---|---|
| committer | 2025-05-05 18:40:05 +0100 | |
| commit | 8e6a02f16c3e542492241f585a91fa0100ea7e33 (patch) | |
| tree | 315c8432368029d8373d75ff12d824c68ab19ce0 /filamento/src/user.rs | |
| parent | ccae86c3b38f829828adc40ab1695b137dc2b070 (diff) | |
| download | luz-8e6a02f16c3e542492241f585a91fa0100ea7e33.tar.gz luz-8e6a02f16c3e542492241f585a91fa0100ea7e33.tar.bz2 luz-8e6a02f16c3e542492241f585a91fa0100ea7e33.zip | |
feat(filamento): reactive_stores support
Diffstat (limited to '')
| -rw-r--r-- | filamento/src/user.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/filamento/src/user.rs b/filamento/src/user.rs index f19a4ad..f30933c 100644 --- a/filamento/src/user.rs +++ b/filamento/src/user.rs @@ -2,6 +2,7 @@ use jid::JID;  #[derive(Debug, Clone, PartialEq, Eq)]  #[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))] +#[cfg_attr(feature = "reactive_stores", derive(reactive_stores::Store))]  pub struct User {      pub jid: JID,      pub nick: Option<String>, | 
