Files

14 lines
200 B
Rust

//! Bizinikiwi Node Template CLI library.
#![warn(missing_docs)]
mod benchmarking;
mod chain_spec;
mod cli;
mod command;
mod rpc;
mod service;
fn main() -> pezsc_cli::Result<()> {
command::run()
}