classicube_relay/lib.rs
1#![doc = include_str!("../README.md")]
2
3pub mod events;
4pub mod packet;
5pub mod stream;
6#[cfg(test)]
7mod tests;
8
9pub use self::{events::RelayListener, packet::Packet, stream::Stream};
10
11/// start index of channels that the relay plugin listen for
12pub const RELAY_CHANNEL_START_INDEX: u8 = 200;