Skip to content

Commit

Permalink
fix: camel case for dns result
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaggeroo committed Feb 14, 2025
1 parent bbc7c43 commit 7751edd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/checks/dns/dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ func NewCheck() checks.Check {

// result represents the result of a single DNS check for a specific target
type result struct {
Resolved []string
Error *string
Total float64
Resolved []string `json:"resolved"`
Error *string `json:"error"`
Total float64 `json:"total"`
}

// Run starts the dns check
Expand Down

0 comments on commit 7751edd

Please sign in to comment.