Files
stoatchat/src/routes/users/fetch_dms.rs
2022-01-27 14:16:30 +00:00

10 lines
177 B
Rust

use revolt_quark::{Error, Result};
use mongodb::bson::doc;
use rocket::serde::json::Value;
#[get("/dms")]
pub async fn req(/*user: UserRef*/) -> Result<Value> {
todo!()
}