newton_cli/commands/task.rs
1use clap::Parser;
2use newton_prover_config::NewtonAvsConfig;
3
4use crate::config::NewtonCliConfig;
5
6/// runs newton cli
7#[derive(Debug, Parser)]
8pub struct SomeCommand;
9
10impl SomeCommand {
11 /// execute function
12 pub async fn execute(self: Box<Self>, _config: NewtonAvsConfig<NewtonCliConfig>) -> eyre::Result<()> {
13 todo!()
14 }
15}