summaryrefslogtreecommitdiffstats
path: root/src/widgets.rs
blob: 21cf047900ab090d67580ed6c70e0ac53c72012e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod battery_info;
pub mod cpu_graph;
pub mod disk_table;
pub mod mem_graph;
pub mod net_graph;
pub mod process_table;
pub mod temperature_table;

pub use battery_info::*;
pub use cpu_graph::*;
pub use disk_table::*;
pub use mem_graph::*;
pub use net_graph::*;
pub use process_table::*;
pub use temperature_table::*;