nikabernhard
Results
1
issues of
nikabernhard
use actix_web::{get, App, HttpResponse, HttpServer, Responder}; #[cfg(feature = "actix")] use zitadel::actix::introspection::{IntrospectedUser, IntrospectionConfigBuilder}; #[get("/unauthed")] async fn unauthed() -> impl Responder { println!("Hello Unauthorized User!"); HttpResponse::Ok().body("Hello Unauthorized User!") } #[get("/authed")] async fn...