mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2025-04-04 10:13:07 +00:00
7 lines
184 B
Rust
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()]
|
|
}
|