use clap::builder::Styles;
use crate::utils::constants::CONFIG_VERSION;
pub fn app_version() -> &'static str {
env!("CARGO_PKG_VERSION")
}
pub fn config_version() -> &'static str {
CONFIG_VERSION
}
pub fn app_name() -> &'static str {
"vibe-action"
}
pub fn app_name_pretty() -> &'static str {
"Vibe Action"
}
pub fn app_styles() -> Styles {
Styles::styled()
.header(clap_cargo::style::HEADER)
.usage(clap_cargo::style::USAGE)
.literal(clap_cargo::style::LITERAL)
.placeholder(clap_cargo::style::PLACEHOLDER)
.error(clap_cargo::style::ERROR)
.valid(clap_cargo::style::VALID)
.invalid(clap_cargo::style::INVALID)
}