mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-22 18:48:03 +00:00
18 lines
324 B
Rust
18 lines
324 B
Rust
|
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);
|
||
|
}
|
||
|
}
|