circus/crates/migrate-cli/src/main.rs
NotAShelf c306383d27
chore: format with updated rustfmt and taplo rules
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ie9ef5fc421fa20071946cf1073f7920c6a6a6964
2026-02-05 22:45:06 +03:00

8 lines
141 B
Rust

//! Database migration CLI utility
use fc_common::migrate_cli::run;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
run().await
}