mirror of
https://git.ghostchain.io/proxmio/ghost-node.git
synced 2025-12-27 19:29:56 +00:00
13 lines
153 B
Rust
13 lines
153 B
Rust
#![warn(missing_docs)]
|
|
|
|
mod chain_spec;
|
|
#[macro_use]
|
|
mod service;
|
|
mod cli;
|
|
mod command;
|
|
mod rpc;
|
|
|
|
fn main() -> sc_cli::Result<()> {
|
|
command::run()
|
|
}
|