Archived
1
0
Fork 0
forked from Anri/cal8tor
This repository has been archived on 2023-04-23. You can view files and clone it, but cannot push or open issues or pull requests.
cal8tor/src/main.rs
2022-08-15 14:52:57 +02:00

9 lines
159 B
Rust

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