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