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