1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! # thcon
//! Switches multiple apps between light and dark mode

#![deny(clippy::all)]

mod config;
mod operation;
mod themeable;

pub mod app;
pub mod dirs;
pub mod sockets;
pub use config::Config;
pub use operation::Operation;
pub use thcon_macro::AppConfig;
pub use thcon_macro::Disableable;
pub use thcon_trait::Disableable;
pub use themeable::{ConfigState, Themeable};

mod switch;
pub use switch::switch;