8 lines
165 B
Rust
8 lines
165 B
Rust
use rauth::entities::Session;
|
|
use rocket::serde::json::Value;
|
|
|
|
#[get("/hello")]
|
|
pub async fn req(/*_session: Session, user: Option<User>*/) -> Value {
|
|
todo!()
|
|
}
|