1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::ops::forc_index_check;
use anyhow::Result;
use clap::Parser;

// Command has to be created in order for the help
// message to be shown in the primary help output
/// Check for Fuel indexer components
#[derive(Debug, Parser)]
pub struct Command {}

pub async fn exec() -> Result<()> {
    forc_index_check::init().await
}