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
//! [](https://docs.rs/leetcode-cli/) //! [](https://crates.io/crates/leetcode-cli) //! [](https://crates.io/crates/leetcode-cli) //! [](https://choosealicense.com/licenses/mit/) //! //! ref to [leetcode-cli](https://github.com/skygragon/leetcode-cli), rust version. //! //! ## Note //! //! > (OS X support for now) //! //! Please make sure you have logined in `leetcode.com` with `chrome`. //! //! ```sh //! leetcode 0.1.0 //! clearloop <udtrokia@163.com> //! Leet your code in command-line. //! //! USAGE: //! leetcode [FLAGS] [SUBCOMMAND] //! //! FLAGS: //! -d, --debug debug mode //! -h, --help Prints help information //! -V, --version Prints version information //! //! SUBCOMMANDS: //! help Prints this message or the help of the given subcommand(s) //! list List problems //! ``` #[macro_use] extern crate log; #[macro_use] extern crate diesel; mod conf; mod store; mod plugins; pub mod cmds; pub mod flag;