use crate::core::mongo;
pub fn save_chat_message(
_client: &mongo::MongoClient,
_from_user_id: &str,
_to_user_id: &str,
_msg: &str,
_time: i64,
) -> Result<String, anyhow::Error> {
log::info!(
"SendMessageAction-Save: _from={}, _to={}, _msg={}, _time={}",
_from_user_id,
_to_user_id,
_msg,
_time
);
Ok("".to_string())
}