Smoothing out the cli output a bit

This commit is contained in:
Dave Hrycyszyn
2024-05-29 16:47:35 +01:00
parent dcb14801da
commit f6b5825cea
3 changed files with 9 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ pub(crate) fn parse_args() -> Args {
args
}
/// Simple program to greet a person
/// A P2P smart contract execution node
#[derive(Parser)]
#[command(version, about, long_about = None)]
pub(crate) struct Args {
@@ -19,5 +19,7 @@ pub(crate) struct Args {
pub(crate) enum Commands {
/// runs the Side Node
Run {},
/// initializes the Side Node with a new keypair
Init {},
}