frontier_template_node/
main.rs

1//! Substrate Node Template CLI library.
2
3#![warn(missing_docs)]
4#![allow(
5	clippy::type_complexity,
6	clippy::too_many_arguments,
7	clippy::large_enum_variant,
8	clippy::result_large_err
9)]
10#![cfg_attr(feature = "runtime-benchmarks", warn(unused_crate_dependencies))]
11
12#[cfg(feature = "runtime-benchmarks")]
13mod benchmarking;
14mod chain_spec;
15mod cli;
16mod client;
17mod command;
18mod eth;
19mod rpc;
20mod service;
21
22fn main() -> sc_cli::Result<()> {
23	command::run()
24}