1
0
Fork 0
mirror of https://codeberg.org/Mo8it/How_To_Linux.git synced 2024-11-22 18:48:03 +00:00
How_To_Linux/cs/src/main.rs

18 lines
324 B
Rust
Raw Normal View History

2023-08-13 23:25:22 +00:00
mod day1;
use collective_score_client::run;
use std::process;
fn main() {
let tasks = day1::tasks().into_iter().collect();
if let Err(e) = run(
tasks,
"collective-score-dev-tools",
"https://collective-score.mo8it.com",
) {
eprintln!("{e:?}");
process::exit(1);
}
}