Sort alphabetically

This commit is contained in:
Sergey Isaev 2020-08-07 12:39:17 +03:00
parent 4186a3a955
commit b5803a7b9a

View File

@ -6,10 +6,10 @@ pub trait CLI {
type Options;
type Output;
const NAME: NameType;
const ABOUT: AboutType;
const ARGUMENTS: &'static [ArgumentType];
const FLAGS: &'static [FlagType];
const NAME: NameType;
const OPTIONS: &'static [OptionType];
const SUBCOMMANDS: &'static [SubCommandType];