zero4rs 2.0.0

zero4rs is a powerful, pragmatic, and extremely fast web framework for Rust
Documentation
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())
}