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
//! All subcommands in leetcode-cli
//!
//! ```sh
//! SUBCOMMANDS:
//! data Manage Cache [aliases: d]
//! edit Edit question by id [aliases: e]
//! list List problems [aliases: l]
//! pick Pick a problem [aliases: p]
//! stat Show simple chart about submissions [aliases: s]
//! test Edit question by id [aliases: t]
//! help Prints this message or the help of the given subcommand(s)
//! ```
use crateError;
use async_trait;
use ;
/// Abstract commands' trait.
pub use DataCommand;
pub use EditCommand;
pub use ExecCommand;
pub use ListCommand;
pub use PickCommand;
pub use StatCommand;
pub use TestCommand;