interlinked/interlinked/source/projects/mod.rs

16 lines
321 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 12:34:21 +00:00
]
}