When trying to store Client in Rocket state: ``` #[launch] fn rocket() -> _ { rocket::build().manage(openapi_sdk::Client::new("API_KEY")) } ``` Compiler complains about lifetimes. Need guidance on using Openapi SDK client in Rocket-managed state safely.