#![allow(unused_imports)]
use bsac_api::model::*;
use bsac_api::BsacApiClient;
#[tokio::main]
async fn main() {
let client = BsacApiClient::from_env();
let response = client
.get_schedule_actuality()
.last_interact(chrono::Utc::now())
.await
.unwrap();
println!("{:#?}", response);
}