mod export;
mod import;
use anyhow::Result;
use clap::Subcommand;
use self::export::ExportCommandArguments;
use self::import::ImportCommandArguments;
#[derive(Debug, Subcommand)]
pub enum MlCommand {
#[command(about = "Import a SurrealML model into an existing database")]
Import(ImportCommandArguments),
#[command(about = "Export a SurrealML model from an existing database")]
Export(ExportCommandArguments),
}
pub async fn init(command: MlCommand) -> Result<()> {
match command {
MlCommand::Import(args) => import::init(args).await,
MlCommand::Export(args) => export::init(args).await,
}
}