Skip to content

Commit

Permalink
Update args.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda authored Mar 21, 2024
1 parent f5009ea commit 88b942a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions mantis/node/src/mantis/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,25 @@ pub enum MantisCommands {
Solve(SolverArgs),
Id(IdArgs),
Simulate(SimulateArgs),
Glt(GltArgs),
}

#[derive(Debug, Subcommand)]
pub struct GltArgs {
#[command(subcommand)]
pub command: GltCommands,
}

GltComands
// given offchain configuration, validates is
Validate
// given offchain configuration and existing chains, plans apply
// outputs offline transaction to chains provided
Plan
/// adds specific things to offchain config
Add


#[derive(Debug, Parser)]
pub struct IdArgs {
#[command(subcommand)]
Expand Down

0 comments on commit 88b942a

Please sign in to comment.