1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Centrifuge Chain Node CLI library.
#![warn(missing_docs)]
// Allow things like `1 * CFG`
#![allow(clippy::identity_op)]

mod chain_spec;
mod cli;
mod command;
mod rpc;
#[macro_use]
mod service;

fn main() -> sc_cli::Result<()> {
	command::run()
}