use chrono::Utc;
use uuid::Uuid;
use crate::event::{RoomInfo, UserInfo, draft};
use crate::{ChannelBus, ChannelError, ChannelResult};
use super::MAX_TEXT_LEN;
use super::WsHandler;
use super::WsOutEvent;
impl WsHandler {
pub(super) async fn draft_save(
bus: &ChannelBus,
user_id: Uuid,
room: Uuid,
content: String,
) -> ChannelResult