//! Application constants and configuration defaults.
//! Defines config file names and version.
/// Config directory name
pub const CONFIG_DIR_NAME: &str = ".vibe-action";
/// Actions directory name
pub const ACTIONS_DIR_NAME: &str = "actions";
/// Config file name
pub const CONFIG_FILE_NAME: &str = "config.yaml";
/// Config version
pub const CONFIG_VERSION: &str = "0.0.3";