mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 04:27:56 +00:00
15 lines
193 B
Rust
15 lines
193 B
Rust
//! Substrate Parachain Node Template CLI
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
mod chain_spec;
|
|
#[macro_use]
|
|
mod service;
|
|
mod cli;
|
|
mod command;
|
|
mod rpc;
|
|
|
|
fn main() -> sc_cli::Result<()> {
|
|
command::run()
|
|
}
|