interlinked/interlinked/source/projects/mod.rs

20 lines
453 B
Rust
Raw Normal View History

//! All [`Project`]s created with Interlinked.
use crate::Project;
pub mod year_2022;
/// Get all [`Project`]s in a single [`Vec`].
pub fn all_projects() -> Vec<Project> {
2024-02-26 12:34:21 +00:00
vec![
year_2022::day_2022_03_06(),
year_2022::day_2022_03_07(),
year_2022::day_2022_03_08(),
2024-02-26 12:46:38 +00:00
year_2022::day_2022_03_09(),
2024-02-26 17:28:56 +00:00
year_2022::day_2022_03_10(),
2024-02-26 17:34:04 +00:00
year_2022::day_2022_03_11(),
2024-02-26 17:45:37 +00:00
year_2022::day_2022_03_12(),
2024-02-29 12:31:55 +00:00
year_2022::day_2022_03_13(),
2024-02-26 12:34:21 +00:00
]
}