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