Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
madhushreeray30 committed Dec 12, 2023
1 parent a6722a5 commit 04abc4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions namecheap/connection_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
)

type namecheapConfig struct {
Username *string `cty:"username" hcl:"username"`
APIUser *string `cty:"api_user" hcl:"api_user"`
APIKey *string `cty:"api_key" hcl:"api_key"`
Username *string `hcl:"username" hcl:"username"`

Check failure on line 8 in namecheap/connection_config.go

View workflow job for this annotation

GitHub Actions / golangci_lint_workflow / lint

SA5008: duplicate struct tag "hcl" (staticcheck)
APIUser *string `hcl:"api_user" hcl:"api_user"`

Check failure on line 9 in namecheap/connection_config.go

View workflow job for this annotation

GitHub Actions / golangci_lint_workflow / lint

SA5008: duplicate struct tag "hcl" (staticcheck)
APIKey *string `hcl:"api_key" hcl:"api_key"`

Check failure on line 10 in namecheap/connection_config.go

View workflow job for this annotation

GitHub Actions / golangci_lint_workflow / lint

SA5008: duplicate struct tag "hcl" (staticcheck)
}

func ConfigInstance() interface{} {
Expand Down

0 comments on commit 04abc4a

Please sign in to comment.