1use crate::command::tx::auction::dutch::DutchCmd; 2use clap::Subcommand; 3 4pub mod dutch; 5 6#[derive(Debug, Subcommand)] 7pub enum AuctionCmd { 8 /// Commands related to Dutch auctions 9 #[clap(display_order = 100, subcommand)] 10 Dutch(DutchCmd), 11}