use clap::Parser;
use std::path::PathBuf;
#[derive(Parser, Debug)]
#[command(
name = "log-genius",
version,
about = "Analyzes logs with AI to provide summaries and solutions.",
long_about = "log-genius is a CLI tool that takes log data from a file or standard input, sends it to the OpenAI API, and provides a concise summary, potential causes, and suggested solutions."
)]
pub struct Cli {
pub file: Option<PathBuf>,
}