git.delta.rocks / unique-network / refs/commits / 5d12903f3ba5

difftreelog

source

node/src/main.rs194 Bsourcehistory
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}