cycles-quartz/utils/tm-prover/src/main.rs

13 lines
230 B
Rust
Raw Normal View History

2023-11-07 13:01:05 +00:00
use clap::Parser;
use color_eyre::eyre::Result;
use tm_prover::{config::Config, prover::prove};
2023-11-07 13:01:05 +00:00
#[tokio::main]
async fn main() -> Result<()> {
color_eyre::install()?;
let args = Config::parse();
2023-11-07 13:01:05 +00:00
prove(args).await
2023-11-07 13:01:05 +00:00
}