diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2023-03-19 21:31:54 -0400 |
|---|---|---|
| committer | Dave Henderson <dhenderson@gmail.com> | 2023-03-19 21:31:54 -0400 |
| commit | e34b2a5d28970f0fd3ae677180a1e33488245a4c (patch) | |
| tree | ef090e783ace329dac9df1d92ed237469a466e9d /aws | |
| parent | e89af5debb3a5d15a571d501bdd12b1fd8861cea (diff) | |
fix new lint errors
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'aws')
| -rw-r--r-- | aws/kms.go | 2 | ||||
| -rw-r--r-- | aws/sts.go | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ type KMS struct { } // NewKMS - Create new AWS KMS client using an SDKSession -func NewKMS(option ClientOptions) *KMS { +func NewKMS(_ ClientOptions) *KMS { client := kms.New(SDKSession()) return &KMS{ Client: client, @@ -19,7 +19,7 @@ type CallerIdentitifier interface { } // NewSTS - -func NewSTS(options ClientOptions) *STS { +func NewSTS(_ ClientOptions) *STS { return &STS{ identifier: func() CallerIdentitifier { if identifierClient == nil { |
