Merge pull request #181 from AleoHQ/refactoring

Sort alphabetically
This commit is contained in:
Collin Chin 2020-08-08 14:29:53 -07:00 committed by GitHub
commit a153360f10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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];