Work on locale stage.

This commit is contained in:
2026-05-03 00:56:20 +02:00
parent b8c2630d3e
commit 0de2f1ce10
7 changed files with 372 additions and 16 deletions
+7
View File
@@ -53,4 +53,11 @@ pub struct KiraConfig {
pub config_trail: Vec<StageResult>,
}
impl KiraConfig {
pub fn get_stage(&self, name: &str) -> Option<StageResult> {
self.config_trail.iter().find(|v| v.name == name)
.and_then(|v| Some(v.clone()))
}
}