forked from Anri/cal8tor
call io file
This commit is contained in:
parent
c2bb8b6fbc
commit
bbe73a029c
1 changed files with 5 additions and 2 deletions
|
@ -1,9 +1,12 @@
|
|||
mod info;
|
||||
mod io;
|
||||
mod timetable;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() {
|
||||
let _timetable = timetable::timetable(3, 1, None).await;
|
||||
let timetable = timetable::timetable(3, 1, None).await;
|
||||
|
||||
let _info = info::info().await;
|
||||
let info = info::info().await;
|
||||
|
||||
io::export(timetable, info);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue