mirror of
https://github.com/starship/starship.git
synced 2026-06-24 02:01:36 +07:00
feat(azure): Azure module (#3275)
* Azure module * make Semantic PR bot happy * Responding to review * Changing severity of logging event
This commit is contained in:
committed by
GitHub
parent
e3a88a6ec1
commit
365b295433
@@ -4,6 +4,7 @@ use serde::{self, Serialize};
|
||||
use starship_module_config_derive::ModuleConfig;
|
||||
|
||||
pub mod aws;
|
||||
pub mod azure;
|
||||
pub mod battery;
|
||||
pub mod character;
|
||||
pub mod cmake;
|
||||
@@ -84,6 +85,7 @@ pub struct FullConfig<'a> {
|
||||
pub add_newline: bool,
|
||||
// modules
|
||||
aws: aws::AwsConfig<'a>,
|
||||
azure: azure::AzureConfig<'a>,
|
||||
battery: battery::BatteryConfig<'a>,
|
||||
character: character::CharacterConfig<'a>,
|
||||
cmake: cmake::CMakeConfig<'a>,
|
||||
@@ -161,6 +163,7 @@ impl<'a> Default for FullConfig<'a> {
|
||||
add_newline: true,
|
||||
|
||||
aws: Default::default(),
|
||||
azure: Default::default(),
|
||||
battery: Default::default(),
|
||||
character: Default::default(),
|
||||
cmake: Default::default(),
|
||||
|
||||
Reference in New Issue
Block a user