This commit is contained in:
2019-01-21 15:02:29 +01:00
parent 5233e44bf4
commit f7ba3ed3a6
3 changed files with 56 additions and 41 deletions

View File

@@ -1,16 +1,7 @@
mod meal;
mod recipe;
mod storage;
mod importer;
pub use self::meal::Meal;
pub fn fetch_meals() -> Vec<Meal> {
vec![
Meal::new("Raclette".to_string(), 800),
Meal::new("Soupe".to_string(), 400),
]
}
#[cfg(test)]
mod tests {
#[test]