1//! Substrate Node Template CLI library. 2#![warn(missing_docs)] 3 4mod benchmarking; 5mod chain_spec; 6mod cli; 7mod command; 8mod rpc; 9mod service; 10 11fn main() -> sc_cli::Result<()> { 12 command::run() 13}