start working on bar pinger and traewelling client

This commit is contained in:
Schrottkatze 2024-09-07 18:31:04 +02:00
commit 718fe00b46
No known key found for this signature in database
13 changed files with 1062 additions and 48 deletions

View file

@ -0,0 +1,9 @@
use crate::traewelling::TraewellingClient;
pub async fn get_current_journey() -> anyhow::Result<()> {
let client = TraewellingClient::new()?;
println!("active: {:#?}", client.get_active_checkin().await?);
Ok(())
}