soroban_cli/commands/contract/bindings/
java.rs1use std::fmt::Debug;
2
3use clap::Parser;
4
5#[derive(Parser, Debug, Clone)]
6#[group(skip)]
7pub struct Cmd {}
8
9#[derive(thiserror::Error, Debug)]
10pub enum Error {
11 #[error("java binding generation is not implemented in the stellar-cli, but is available via the tool located here: https://github.com/lightsail-network/stellar-contract-bindings")]
12 NotImplemented,
13}
14
15impl Cmd {
16 pub fn run(&self) -> Result<(), Error> {
17 Err(Error::NotImplemented)
18 }
19}