1 2 3 4 5 6 7 8 9 10 11
//! Voice connection and gateway definitions. #![warn(missing_docs)] mod close_code; mod opcode; mod voice_region; mod voice_state; pub use self::{ close_code::CloseCode, opcode::OpCode, voice_region::VoiceRegion, voice_state::VoiceState, };