freeroast 0.1.9

A simple coffee roasting app
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub fn menu() {
    let ms = String::from(
        r#"
FREEROAST CLI

start_roast:    Starts roast
add_bean:       Add a new bean to database
exit:           Kills program
show_beans:     Shows all beans in database
show_roasts:    Shows all roasts in database
help:           Prints this menu
    "#,
    );
    println!("{}", ms);
}