mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-22 05:37:59 +00:00
14 lines
200 B
Rust
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()
|
|
}
|