forked from jmug/stoatchat
9 lines
197 B
Rust
9 lines
197 B
Rust
use revolt_quark::{EmptyResponse, Result};
|
|
|
|
use mongodb::bson::doc;
|
|
|
|
#[delete("/<target>")]
|
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<EmptyResponse> {
|
|
todo!()
|
|
}
|