Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ie9ef5fc421fa20071946cf1073f7920c6a6a6964
8 lines
141 B
Rust
8 lines
141 B
Rust
//! Database migration CLI utility
|
|
|
|
use fc_common::migrate_cli::run;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
run().await
|
|
}
|