diff options
| author | Max Audron <audron@cocaine.farm> | 2025-03-01 20:00:36 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2025-03-01 20:02:12 +0100 |
| commit | 09bdd93113e46a5ee909190d23a2638c5f4f010b (patch) | |
| tree | 8bf27da0c09317302e6c3b2d2020ac2b7403b650 /src/message/signalproxy/mod.rs | |
| parent | add UserType implementation for required signalproxy objects (diff) | |
implement rpc calls
Diffstat (limited to '')
| -rw-r--r-- | src/message/signalproxy/mod.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/message/signalproxy/mod.rs b/src/message/signalproxy/mod.rs index 062b400..5107e9b 100644 --- a/src/message/signalproxy/mod.rs +++ b/src/message/signalproxy/mod.rs @@ -5,6 +5,8 @@ use crate::{ serialize::Serialize, }; +use rpccall::RpcCall; + use log::debug; use num_derive::{FromPrimitive, ToPrimitive}; @@ -12,7 +14,7 @@ mod heartbeat; mod initdata; mod initrequest; pub mod objects; -mod rpccall; +pub mod rpccall; mod syncmessage; pub mod translation; @@ -21,7 +23,6 @@ pub use translation::*; pub use heartbeat::*; pub use initdata::*; pub use initrequest::*; -pub use rpccall::*; pub use syncmessage::*; use once_cell::sync::OnceCell; |
