solutions/node/src/main.rs

14 lines
191 B
Rust
Raw Normal View History

2019-08-29 15:44:46 +00:00
//! Substrate Node Template CLI library.
#![warn(missing_docs)]
mod chain_spec;
#[macro_use]
mod service;
mod cli;
2020-03-05 16:53:25 +00:00
mod command;
2020-08-21 11:20:35 +00:00
mod rpc;
2019-08-29 15:44:46 +00:00
2020-03-05 16:53:25 +00:00
fn main() -> sc_cli::Result<()> {
2020-04-15 11:33:19 +00:00
command::run()
2019-08-29 15:44:46 +00:00
}