unique-network
refs/commits
a3fcd2f6aa7e
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;910fn main() -> sc_cli::Result<()> {11 command::run()12}