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

11 lines
243 B
Rust

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