use crate::util::VariantFormat;
#[derive(clap::Args)]
pub struct Args {
pub file: String,
#[arg(short = 'v', long, value_enum, default_value = "external")]
pub variant: VariantFormat,
#[arg(short = 't', long, default_value = "type")]
pub tag: String,
#[arg(short = 'c', long, default_value = "content")]
pub content: String,
}
pub fn run(_args: Args) {
eprintln!("Error: JSON to Eure conversion is not yet implemented.");
eprintln!("The reverse conversion API is currently under development.");
eprintln!("You can only convert Eure → JSON using `eure to-json`.");
std::process::exit(1);
}