use hacker_rs::{client::HackerNewsClient, errors::HackerNewsClientError}; #[tokio::main] async fn main() -> Result<(), HackerNewsClientError> { // Build your client at the start of your application process let client = HackerNewsClient::new(); let item = client.get_story(69).await?; dbg!(item); Ok(()) }