mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-11 05:29:25 +00:00
14 lines
149 B
Rust
14 lines
149 B
Rust
|
|
mod chain_spec;
|
||
|
|
#[macro_use]
|
||
|
|
mod service;
|
||
|
|
|
||
|
|
mod command_helper;
|
||
|
|
mod command;
|
||
|
|
|
||
|
|
mod rpc;
|
||
|
|
mod cli;
|
||
|
|
|
||
|
|
fn main() -> sc_cli::Result<()> {
|
||
|
|
command::run()
|
||
|
|
}
|