Skip to content

Commit

Permalink
binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Aug 11, 2020
1 parent 4b22342 commit 6640260
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testing/iapyx/src/bin/iapyx-cli.rs
@@ -0,0 +1,6 @@
use iapyx::cli::args::interactive::UserInteraction;

pub fn main() {
let mut user_interaction = UserInteraction::default();
user_interaction.interact().unwrap();
}
18 changes: 18 additions & 0 deletions testing/iapyx/src/bin/iapyx-load.rs
@@ -0,0 +1,18 @@
use chain_addr::{AddressReadable, Discrimination};
use iapyx::cli::args::load::IapyxLoadCommand;
use iapyx::{
cli::args::interactive::UserInteraction, Controller, MultiController, SimpleVoteStatus,
VoteStatusProvider, WalletRequestGen,
};
use jormungandr_lib::interfaces::{AccountIdentifier, Address};
use jortestkit::load;
use load::{Configuration, Monitor};
use std::str;
use std::str::FromStr;
use structopt::StructOpt;
use thiserror::Error;
use wallet_core::Choice;

pub fn main() {
IapyxLoadCommand::from_args().exec().unwrap();
}

0 comments on commit 6640260

Please sign in to comment.