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

7 lines
214 B
Rust

use revolt_quark::{EmptyResponse, Result};
#[put("/<target>/ack/<message>")]
pub async fn req(/*user: UserRef, target: Ref, message: Ref*/ target: String, message: String) -> Result<EmptyResponse> {
todo!()
}