summaryrefslogtreecommitdiffstats
path: root/src/config/clean/app/mod.rs
blob: d517b31b291a8a9e90ed8a03dbfeb4421c3992cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod config;
pub mod display;
pub mod preview;
pub mod search;
pub mod tab;

pub use config::*;

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

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