1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![allow(dead_code)]
//! # Ripfetch
//! The most originally named *neofetch* ripoff you've ever seen!
//!
//! Actual docs go here I suppose.
//!

/// OS specific code.
mod os;

/// Config code.
mod config;

/// Queries, so basically the different things that can be loaded.
mod query;