chore: rename events/webrtc to events/voice_gateway

This commit is contained in:
kozabrada123 2023-12-16 09:34:30 +01:00
parent d3e0c82369
commit b8d344d745
12 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ pub use stage_instance::*;
pub use thread::*;
pub use user::*;
pub use voice::*;
pub use voice_gateway::*;
pub use webhooks::*;
pub use webrtc::*;
#[cfg(feature = "client")]
use super::Snowflake;
@ -72,7 +72,7 @@ mod user;
mod voice;
mod webhooks;
mod webrtc;
mod voice_gateway;
pub trait WebSocketEvent: Send + Sync + Debug {}