1
2
3
4
5
6
7
8
9
use std::sync::{atomic::AtomicBool, Arc};

pub struct DeployArgs {
    pub config: String,
    pub cache: String,
    pub keypair: Option<String>,
    pub rpc_url: Option<String>,
    pub interrupted: Arc<AtomicBool>,
}