Skip to content

Commit fd1b64e

Browse files
Return result directly
Co-authored-by: Lukas Wirth <[email protected]>
1 parent fba6adf commit fd1b64e

File tree

1 file changed

+2
-2
lines changed
  • crates/proc-macro-srv-cli/src

1 file changed

+2
-2
lines changed

crates/proc-macro-srv-cli/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
33
use proc_macro_srv::cli;
44

5-
fn main() {
6-
cli::run().unwrap();
5+
fn main() -> std::io::Result<()> {
6+
cli::run()
77
}

0 commit comments

Comments
 (0)