clier 0.7.4

A cli parser and framework for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Label
pub mod label;

/// .
pub trait Displayer {
  /// Write shit
  fn info(&self, text: &str);

  /// Write shit
  fn error(&self, text: &str);

  /// .
  fn warn(&self, text: &str);
  /// .
  fn success(&self, text: &str);
}