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