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

10 lines
218 B
Rust

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