job-compiler/tools/src/repo.rs

6 lines
122 B
Rust

use crate::recipe::Recipe;
pub struct Repo {
path: String,
recipes: std::collections::HashMap<String, Recipe>,
}