ghost-node/utils/staking-miner/playground/node/src/main.rs

13 lines
153 B
Rust
Raw Normal View History

#![warn(missing_docs)]
mod chain_spec;
#[macro_use]
mod service;
mod cli;
mod command;
mod rpc;
fn main() -> sc_cli::Result<()> {
command::run()
}