ripfetch/lib.rs
1#![allow(dead_code)]
2//! # Ripfetch
3//! The most originally named *neofetch* ripoff you've ever seen!
4//!
5//! Actual docs go here I suppose.
6//!
7
8/// OS specific code.
9mod os;
10
11/// Config code.
12mod config;
13
14/// Queries, so basically the different things that can be loaded.
15mod query;