()
| 14 | |
| 15 | #[tokio::main] |
| 16 | async fn main() -> Result<(), Error> { |
| 17 | // required to enable CloudWatch error logging by the runtime |
| 18 | tracing::init_default_subscriber(); |
| 19 | |
| 20 | let func = service_fn(my_extension); |
| 21 | lambda_extension::run(func).await |
| 22 | } |
nothing calls this directly
no test coverage detected