summaryrefslogtreecommitdiffstats
path: root/src/widgets.rs
blob: 167a954e6753885026fd0bb31a4f648f6b4c5403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod battery_widget;
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_widget::*;
pub use cpu_graph::*;
pub use disk_table::*;
pub use mem_graph::*;
pub use net_graph::*;
pub use process_table::*;
pub use temperature_table::*;