1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*! [combu](https://crates.io/crates/combu) is a customizable cli framework crate.
The library name "combu" comes from command + 昆布(konbu, it means kelp in japanese).
combu has no dependencies(or depends on only std library).
Crate.io's page is [here](https://crates.io/crates/combu).
To know more about this crate, please read README(You can read [file](../README.md) OR [Github](https://github.com/suquiya/combu)) first.
combu(com + 昆布)は柔軟に CLI を組み上げられることを目標とした、カスタマイズ可能な CLI フレームワークです(一時クレートの名前が cmb だったこともありましたが、現在は combu です)。
もう少し詳しく知りたい場合、まず初めに[README](https://github.com/suquiya/combu)をお読みください。
*/
/// action is a module about Action
/// command is a module about command
/// context is a module about context
/// flag is a module about flag
/// parser is a module about command args parser
/// vector is a moudle about vector
pub use ;
pub use Command;
pub use Context;
pub use ;
// pub use hook::Hook;
pub use Parser;
pub use Vector;
/// Macros for combu