use chrono::Utc;
use uuid::Uuid;
use crate::event::{RoomInfo, UserInfo, voice};
use crate::{ChannelBus, ChannelResult};
use super::WsOutEvent;
use super::WsHandler;
impl WsHandler {
pub(super) async fn voice_join(
bus: &ChannelBus,
user_id: Uuid,
room: Uuid,
) -> ChannelResult