1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56mod chain_spec;7#[macro_use]8mod service;9mod cli;10mod command;1112fn main() -> sc_cli::Result<()> {13 command::run()14}