flare_core/common/protocol/
mod.rs1pub mod flare {
13 pub mod core {
14 pub mod commands {
16 include!("flare.core.commands.rs");
17 }
18
19 pub mod flare_core {
22 include!("flare.core.rs");
23 }
24
25 pub use flare_core::{Frame, Reliability};
26
27 pub use commands::{
29 Command, CustomCommand, NotificationCommand, PayloadCommand, SystemCommand,
30 };
31 }
32}
33
34pub mod builder;
36
37#[cfg(test)]
39pub mod serde_example;
40
41pub use builder::*;
43pub use flare::core::commands::system_command::SerializationFormat;
44pub use flare::core::commands::*;
45pub use flare::core::{Frame, Reliability};