summaryrefslogtreecommitdiffstats
path: root/src/config/general/mod.rs
blob: 7b85b7fd58acb8ae8c8af47bc5d1a26fb9379b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod app;

mod app_raw;
mod display_raw;
mod preview_raw;
mod sort_raw;
mod tab_raw;

pub use self::app::AppConfig;

#[cfg(not(target_os = "windows"))]
const DEFAULT_CONFIG_FILE_PATH: &str = include_str!("../../../config/joshuto.toml");

#[cfg(target_os = "windows")]
const DEFAULT_CONFIG_FILE_PATH: &str = include_str!("..\\..\\..\\config\\joshuto.toml");