fond-domain 0.2.2

Domain types, traits, and errors for fond recipe manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Domain types, traits, and errors for fond.
//!
//! This crate contains pure data structures and type definitions
//! with no I/O or side effects. All entities that flow through
//! fond are defined here.

mod emitter;
mod error;
mod parser;
pub mod recipe;
mod slug;

pub use emitter::*;
pub use error::*;
pub use parser::*;
pub use recipe::*;
pub use slug::*;