Skip to content

Commit c62e28a

Browse files
committed
update readme
1 parent 40eda40 commit c62e28a

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# How to run
66

77
```rs
8-
RUST_LOG=debug cargo run -- --file ./test.yaml
8+
cargo run -- --file ./test.yaml
99
```
1010

1111

src/base_cli.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
use clap::{Arg, Command};
22
use std::path::PathBuf;
33

4-
5-
64
pub struct BaseCli {
75
pub file: PathBuf,
86
}

src/base_request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,4 +382,4 @@ mod tests {
382382
assert_ok!(resp);
383383
m.assert();
384384
}
385-
}
385+
}

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ async fn setup() -> Result<(), anyhow::Error> {
2626
..Default::default()
2727
};
2828
base_request::run(ctx, content).await
29-
}
29+
}

0 commit comments

Comments
 (0)