1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pub mod app_root_dir;
pub mod clipboard;
pub mod dialog;
pub mod finder;
pub mod html_scraping;
pub mod img_processing;
pub mod uploader;
pub mod ldap;

use anyhow::{anyhow, Result as AnyResult};

#[cfg(test)]
mod tests {
    // use super::*;
    // #[test]
    // fn get_app_root_dir() {
    //     let root_dir = app_root_dir::application_root_dir();
    //     eprintln!("App root dir: {:?}", root_dir);
    //     assert!(root_dir.is_ok());
    // }
}