rpf 0.1.6

A framework for creating Rust programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2015, Alberto Corona <alberto@0x1a.us>
// All rights reserved. This file is part of rpf, distributed under the
// BSD 3-Clause license. For full terms please see the LICENSE file.

pub use utils::prog::{Prog};
pub use utils::as_path::*;
pub use utils::status::{Exit,ExitStatus};
pub use utils::styled::*;
pub use utils::pathmod::{PathMod};

pub mod as_path;
pub mod prog;
pub mod pathmod;
pub mod status;
pub mod styled;
pub mod test;