maid: formatting

This commit is contained in:
Jeremy Wall 2024-09-23 20:09:46 -04:00
parent 263abda17b
commit 6a5046d3c0
2 changed files with 6 additions and 6 deletions

View File

@ -41,10 +41,10 @@ pub struct AppState {
pub recipe_categories: BTreeMap<String, String>,
pub extras: Vec<(String, String)>,
// FIXME(jwall): This should really be storable I think?
#[serde(skip_deserializing,skip_serializing)]
#[serde(skip_deserializing, skip_serializing)]
pub staples: Option<BTreeSet<Ingredient>>,
// FIXME(jwall): This should really be storable I think?
#[serde(skip_deserializing,skip_serializing)]
#[serde(skip_deserializing, skip_serializing)]
pub recipes: BTreeMap<String, Recipe>,
pub category_map: BTreeMap<String, String>,
pub filtered_ingredients: BTreeSet<IngredientKey>,