use crate::database::*; use rauth::entities::Session; use rocket::serde::json::Value; #[get("/hello")] pub async fn req(_session: Session, user: Option) -> Value { json!({ "onboarding": user.is_none() }) }