mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-07-24 16:33:14 +00:00
15 lines
277 B
Rust
15 lines
277 B
Rust
use clap::Parser;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct CounterConfig {
|
|
pub node_id: u64,
|
|
pub http_port: u16,
|
|
}
|
|
|
|
#[derive(Debug, Parser)]
|
|
pub struct Cli {
|
|
#[arg(long)]
|
|
pub config: std::path::PathBuf,
|
|
}
|