unique-network
refs/commits
0cdaf2ed2223
node/src/main.rs
1//! Substrate Node Template CLI library.2#![warn(missing_docs)]34mod chain_spec;5#[macro_use]6mod service;7mod cli;8mod command;9mod rpc;1011fn main() -> sc_cli::Result<()> {12 command::run()13}