Skip to content

Commit

Permalink
Enum types follow PascalCasing (#4128)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepikaDixit authored and Ilya Kislenko committed Oct 15, 2018
1 parent 808802b commit 6367d83
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkg/objectstore/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ const (
type SecretType string

const (
// SecretTypeAwsAccessKey captures enum value "awsAccessKey"
SecretTypeAwsAccessKey SecretType = "awsAccessKey"
// SecretTypeGcpServiceAccountKey captures enum value "gcpServiceAccountKey"
SecretTypeGcpServiceAccountKey SecretType = "gcpServiceAccountKey"
// SecretTypeAzStorageAccount captures enum value "azStorageAccount"
SecretTypeAzStorageAccount SecretType = "azStorageAccount"
// SecretTypeAwsAccessKey captures enum value "AwsAccessKey"
SecretTypeAwsAccessKey SecretType = "AwsAccessKey"
// SecretTypeGcpServiceAccountKey captures enum value "GcpServiceAccountKey"
SecretTypeGcpServiceAccountKey SecretType = "GcpServiceAccountKey"
// SecretTypeAzStorageAccount captures enum value "AzStorageAccount"
SecretTypeAzStorageAccount SecretType = "AzStorageAccount"
)

0 comments on commit 6367d83

Please sign in to comment.