[go: up one dir, main page]

forc 0.8.0

Fuel Orchestrator.
1
2
3
4
5
6
7
8
9
10
11
#![allow(warnings)]
mod cli;
mod ops;
mod utils;

use anyhow::Result;

#[tokio::main]
async fn main() -> Result<()> {
    cli::run_cli().await
}