Return result directly

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
Amos Wenger 2022-07-24 14:50:30 +02:00 committed by Amos Wenger
parent fba6adfae4
commit fd1b64ec71

View file

@ -2,6 +2,6 @@
use proc_macro_srv::cli;
fn main() {
cli::run().unwrap();
fn main() -> std::io::Result<()> {
cli::run()
}