use std::collections::HashMap;
pub use self::equipment::*;
pub use self::fermentable::*;
pub use self::hop::*;
pub use self::mash::*;
pub use self::mash_step::*;
pub use self::misc::*;
pub use self::recipe::*;
pub use self::style::*;
pub use self::water::*;
pub use self::yeast::*;
#[derive(Serialize, Deserialize, Debug)]
pub enum RecordSet {
Empty,
Equipments(HashMap<String, Equipment>),
Fermentables(HashMap<String, Fermentable>),
Hops(HashMap<String, Hop>),
Miscs(HashMap<String, Misc>),
Recipes(HashMap<String, Recipe>),
Waters(HashMap<String, Water>),
Yeasts(HashMap<String, Yeast>),
Styles(HashMap<String, Style>),
Mashs(HashMap<String, Mash>),
}
mod equipment;
mod fermentable;
mod hop;
mod mash;
mod mash_step;
mod misc;
mod recipe;
mod style;
mod water;
mod yeast;