move Repo and Recipe into the library

This commit is contained in:
Sebastian Kuzminsky 2025-01-17 18:45:39 -07:00
parent 20c49c62a0
commit 57b8dae357
4 changed files with 84 additions and 62 deletions

6
tools/src/repo.rs Normal file
View file

@ -0,0 +1,6 @@
use crate::recipe::Recipe;
pub struct Repo {
path: String,
recipes: std::collections::HashMap<String, Recipe>,
}