()
| 17 | |
| 18 | #[tokio::main] |
| 19 | async fn main() -> Result<(), Error> { |
| 20 | tracing::init_default_subscriber(); |
| 21 | let func = service_fn(func); |
| 22 | lambda_runtime::run(func).await?; |
| 23 | Ok(()) |
| 24 | } |
| 25 | |
| 26 | async fn func( |
| 27 | event: LambdaEvent<APIGatewayCustomAuthorizerRequest>, |
nothing calls this directly
no test coverage detected