()
| 12 | const APP_NAME_STR: &str = "AmazonQ-For-CLI"; |
| 13 | |
| 14 | pub fn app_name() -> AppName { |
| 15 | static APP_NAME: LazyLock<AppName> = LazyLock::new(|| AppName::new(APP_NAME_STR).expect("invalid app name")); |
| 16 | APP_NAME.clone() |
| 17 | } |
| 18 | |
| 19 | pub fn behavior_version() -> BehaviorVersion { |
| 20 | BehaviorVersion::v2025_08_07() |
no test coverage detected