Skip to content

Commit

Permalink
Goose rewrite of shoot
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel-Petrov committed Feb 2, 2024
1 parent 752f92d commit 984e30a
Show file tree
Hide file tree
Showing 8 changed files with 340 additions and 538 deletions.
389 changes: 284 additions & 105 deletions src/actions/goose.rs

Large diffs are not rendered by default.

18 changes: 16 additions & 2 deletions src/actions/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
pub mod goose;
pub mod shoot;
use crate::config::GatlingConfig;

use self::shoot::GatlingShooterSetup;

mod goose;
mod shoot;

pub async fn shoot(config: GatlingConfig) -> color_eyre::Result<()> {
let mut shooter = GatlingShooterSetup::from_config(config).await?;
shooter.setup().await?;

goose::erc20(&shooter).await?;
goose::erc721(&shooter).await?;

Ok(())
}
Loading

0 comments on commit 984e30a

Please sign in to comment.