Skip to content

Commit

Permalink
fix: mark bindings::typescript::Cmd fields as pub
Browse files Browse the repository at this point in the history
  • Loading branch information
chadoh committed Jun 10, 2024
1 parent fc3da16 commit 64392b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmd/soroban-cli/src/commands/contract/bindings/typescript.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ pub struct Cmd {
pub wasm: Option<std::path::PathBuf>,
/// Where to place generated project
#[arg(long)]
output_dir: PathBuf,
pub output_dir: PathBuf,
/// Whether to overwrite output directory if it already exists
#[arg(long)]
overwrite: bool,
pub overwrite: bool,
/// The contract ID/address on the network
#[arg(long, visible_alias = "id")]
contract_id: String,
pub contract_id: String,
#[command(flatten)]
locator: locator::Args,
pub locator: locator::Args,
#[command(flatten)]
network: network::Args,
pub network: network::Args,
}

#[derive(thiserror::Error, Debug)]
Expand Down

0 comments on commit 64392b0

Please sign in to comment.