1
 2
 3
 4
 5
 6
 7
 8
 9
10
#![doc = include_str!("../README.md")]

pub mod events;
pub mod packet;
pub mod stream;

pub use self::{events::RelayListener, packet::Packet, stream::Stream};

/// start index of channels that the relay plugin listen for
pub const RELAY_CHANNEL_START_INDEX: u8 = 200;