bdd-todo 0.1.0

A terminal-based productivity client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use dotenv::dotenv;
use std::env;
use bdd_todo as todo;

fn main() {
    // configure the environment variable.
    let config = dotenv();
    match config {
        Ok(_) => (),
        Err(e) => {
            println!("{:?}", e);
            panic!("Could not configure environment variable!");
        }
    }
    let args: Vec<String> = env::args().collect();
    todo::run(args);
}