6 lines
122 B
Rust
6 lines
122 B
Rust
use crate::recipe::Recipe;
|
|
|
|
pub struct Repo {
|
|
path: String,
|
|
recipes: std::collections::HashMap<String, Recipe>,
|
|
}
|