This repository has been archived on 2024-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
cal8tor/src/main.rs
2022-08-15 19:20:10 +02:00

12 lines
199 B
Rust

mod info;
mod io;
mod timetable;
#[tokio::main]
async fn main() {
let timetable = timetable::timetable(3, 1, None).await;
let info = info::info().await;
io::export(timetable, info);
}