app/
app.rs

1use cargo_regression::{Args, TestExitCode};
2
3#[tokio::main]
4async fn main() -> TestExitCode {
5  let args = Args::parse_from(std::env::args_os());
6  args.test().await
7}