Files
bottom/src/widgets.rs
T
Clement Tsang c730048c7a temp work
2024-01-02 01:13:02 -05:00

16 lines
320 B
Rust

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::*;