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.
56pub mod frame;
7pub mod messages;
8pub mod modules;
910pub use messages::*;