1
0
Fork 0
mirror of https://codeberg.org/Mo8it/How_To_Linux.git synced 2025-04-04 10:13:07 +00:00
How_To_Linux/cs/src/day1/mod.rs
2023-08-14 01:25:33 +02:00

7 lines
184 B
Rust

mod collective_score_intro;
use collective_score_client::check::RunnableCheck;
pub fn tasks() -> [(&'static str, Box<dyn RunnableCheck>); 1] {
[collective_score_intro::task()]
}