freeroast 0.1.9

A simple coffee roasting app
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//!
//! Database mappings and methods
//! for roasts and beans
//!
mod beans;
mod init_db;
mod roasts;
mod schema;

pub use beans::{get_all_beans, Bean};
pub use init_db::init_db;
pub use roasts::get_all_roasts;