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