diff options
| author | mo8it <mo8it@proton.me> | 2024-08-26 22:03:09 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-08-26 22:03:09 +0200 |
| commit | 0f71a150ff292b1f18b30c7aa75dc8b3d48d2b8e (patch) | |
| tree | d36201c122d68a74b5370355c3aaabbfb75c6eb7 /src/main.rs | |
| parent | 74388d4bf44cdfebc0d6dc8e5faa81bffe71ddd6 (diff) | |
Making code prettier :P
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 998d3d1..e8f274b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -71,9 +71,7 @@ fn main() -> Result<()> { } match args.command { - Some(Subcommands::Init) => { - return init::init().context("Initialization failed"); - } + Some(Subcommands::Init) => return init::init().context("Initialization failed"), Some(Subcommands::Dev(dev_command)) => return dev_command.run(), _ => (), } |
