nix-configs/programs/traveldings/src/commands/current_journey.rs

10 lines
229 B
Rust
Raw Normal View History

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