summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-08-26 22:03:09 +0200
committermo8it <mo8it@proton.me>2024-08-26 22:03:09 +0200
commit0f71a150ff292b1f18b30c7aa75dc8b3d48d2b8e (patch)
treed36201c122d68a74b5370355c3aaabbfb75c6eb7 /src/main.rs
parent74388d4bf44cdfebc0d6dc8e5faa81bffe71ddd6 (diff)
Making code prettier :P
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
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(),
_ => (),
}