Skip to main content

gmail_auto_label/
lib.rs

1mod app;
2mod cache;
3mod classify;
4mod command;
5mod errors;
6mod gog;
7mod models;
8mod utils;
9
10pub fn main_entry() {
11    if let Err(e) = app::run() {
12        eprintln!("{e}");
13        std::process::exit(1);
14    }
15}