Adds write script for recipes, adds ingredients migrations

This commit is contained in:
2019-01-28 15:23:39 +01:00
parent fb4d24ef44
commit 202d7c5976
8 changed files with 134 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ fn main() {
println!("Here are {} recipes :", result.len());
for rec in result {
println!("{}", rec.title);
println!("*************\n{}", rec.title);
println!("-------------\n");
println!("{}", rec.ingredients);
}