mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 09:44:22 +00:00
365b295433
* Azure module * make Semantic PR bot happy * Responding to review * Changing severity of logging event
23 lines
531 B
Rust
23 lines
531 B
Rust
use crate::config::ModuleConfig;
|
|
use serde::Serialize;
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
|
pub struct AzureConfig<'a> {
|
|
pub format: &'a str,
|
|
pub symbol: &'a str,
|
|
pub style: &'a str,
|
|
pub disabled: bool,
|
|
}
|
|
|
|
impl<'a> Default for AzureConfig<'a> {
|
|
fn default() -> Self {
|
|
AzureConfig {
|
|
format: "on [$symbol($subscription)]($style) ",
|
|
symbol: "ﴃ ",
|
|
style: "blue bold",
|
|
disabled: true,
|
|
}
|
|
}
|
|
}
|