mirror of
https://github.com/logos-blockchain/logos-sql-zone.git
synced 2026-06-08 02:39:33 +00:00
9 lines
174 B
Rust
9 lines
174 B
Rust
use clap::Parser as _;
|
|
use demo_sqlite_sequencer::{SequencerArgs, run};
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let args = SequencerArgs::parse();
|
|
drop(run(args).await);
|
|
}
|