volant-protocol 0.1.0-alpha.6

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

pub mod frame;
pub mod messages;
pub mod modules;

pub use messages::*;