dcache/src/bin/main.rs
2023-05-24 21:22:14 +05:30

37 lines
941 B
Rust

use clap::Parser;
use dcache::network::raft_network_impl::ExampleNetwork;
use dcache::start_example_raft_node;
use dcache::store::ExampleStore;
use dcache::ExampleTypeConfig;
use openraft::Raft;
use tracing_subscriber::EnvFilter;
pub type ExampleRaft = Raft<ExampleTypeConfig, ExampleNetwork, ExampleStore>;
#[derive(Parser, Clone, Debug)]
#[clap(author, version, about, long_about = None)]
pub struct Opt {
#[clap(long)]
pub id: u64,
#[clap(long)]
pub http_addr: String,
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
// Setup the logger
tracing_subscriber::fmt()
.with_target(true)
.with_thread_ids(true)
.with_level(true)
.with_ansi(false)
.with_env_filter(EnvFilter::from_default_env())
.init();
// Parse the parameters passed by arguments.
let options = Opt::parse();
start_example_raft_node(options.id, options.http_addr).await
}