Skip to main content

volant_protocol/
lib.rs

1// SPDX-License-Identifier: GPL-3.0-or-later
2//! Wire protocol between the Volant controller and its agent.
3//!
4//! Every message is one frame (see [`frame`]) whose payload is a JSON document.
5
6pub mod frame;
7pub mod messages;
8pub mod modules;
9
10pub use messages::*;