sysit/lib.rs
1/*
2sysit | Check on the system with a quick glance!
3Copyright (C) 2021 Rohan Jain
4
5This program is free software: you can redistribute it and/or modify it under
6the terms of the GNU General Public License as published by the Free Software
7Foundation, either version 3 of the License, or any later version.
8
9This program is distributed in the hope that it will be useful, but WITHOUT
10ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12details.
13
14You should have received a copy of the GNU General Public License along with
15this program. If not, see <https://www.gnu.org/licenses/>.
16*/
17
18pub mod colors;
19pub mod config;
20pub mod cpu;
21pub mod memory;
22pub mod ping;
23pub mod sensors;