mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-13 22:49:25 +00:00
16 lines
168 B
Rust
16 lines
168 B
Rust
#![allow(clippy::result_large_err)]
|
|
|
|
mod keystore;
|
|
|
|
mod chain_spec;
|
|
mod service;
|
|
|
|
mod command;
|
|
|
|
mod rpc;
|
|
mod cli;
|
|
|
|
fn main() -> sc_cli::Result<()> {
|
|
command::run()
|
|
}
|