1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! # 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 themeable::Themeable;