git.delta.rocks / unique-network / refs/commits / 23e0b8caf5e4

difftreelog

source

node/src/main.rs326 Bsourcehistory
1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56//! Substrate Node Template CLI library.7#![warn(missing_docs)]89mod chain_spec;10#[macro_use]11mod service;12mod cli;13mod command;14mod rpc;1516fn main() -> sc_cli::Result<()> {17    command::run()18}