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