chore: rename events/webrtc to events/voice_gateway

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

View File

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