mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 19:51:52 +03:00
Change order
This commit is contained in:
parent
3b81e6a219
commit
d584810b1d
10
leo/main.rs
10
leo/main.rs
@ -30,10 +30,10 @@ fn main() -> Result<(), CLIError> {
|
||||
SetupCommand::new().display_order(7),
|
||||
ProveCommand::new().display_order(8),
|
||||
RunCommand::new().display_order(9),
|
||||
PublishCommand::new().display_order(10),
|
||||
DeployCommand::new().display_order(11),
|
||||
CleanCommand::new().display_order(12),
|
||||
LoginCommand::new().display_order(13),
|
||||
LoginCommand::new().display_order(10),
|
||||
PublishCommand::new().display_order(11),
|
||||
DeployCommand::new().display_order(12),
|
||||
CleanCommand::new().display_order(13),
|
||||
])
|
||||
.set_term_width(0)
|
||||
.get_matches();
|
||||
@ -49,10 +49,10 @@ fn main() -> Result<(), CLIError> {
|
||||
("setup", Some(arguments)) => SetupCommand::process(arguments),
|
||||
("prove", Some(arguments)) => ProveCommand::process(arguments),
|
||||
("run", Some(arguments)) => RunCommand::process(arguments),
|
||||
("login", Some(arguments)) => LoginCommand::process(arguments),
|
||||
("publish", Some(arguments)) => PublishCommand::process(arguments),
|
||||
("deploy", Some(arguments)) => DeployCommand::process(arguments),
|
||||
("clean", Some(arguments)) => CleanCommand::process(arguments),
|
||||
("login", Some(arguments)) => LoginCommand::process(arguments),
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user