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

9 lines
186 B
Rust

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