mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-08-31 02:22:29 +00:00
9 lines
199 B
Rust
9 lines
199 B
Rust
use revolt_quark::{Error, Result};
|
|
|
|
use rocket::serde::json::Value;
|
|
|
|
#[get("/<target>/relationship")]
|
|
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
|
todo!()
|
|
}
|