refactor(alerting): Sort alert types alphabetically

This commit is contained in:
TwiN 2022-01-16 00:07:19 -05:00
parent 681b1c63f1
commit a848776a34

View File

@ -8,15 +8,15 @@ const (
// TypeCustom is the Type for the custom alerting provider
TypeCustom Type = "custom"
// TypeGoogleChat is the Type for the Google chat alerting provider
TypeGoogleChat Type = "googlechat"
// TypeDiscord is the Type for the discord alerting provider
TypeDiscord Type = "discord"
// TypeEmail is the Type for the email alerting provider
TypeEmail Type = "email"
// TypeGoogleChat is the Type for the googlechat alerting provider
TypeGoogleChat Type = "googlechat"
// TypeMattermost is the Type for the mattermost alerting provider
TypeMattermost Type = "mattermost"