atc0005 / dnsc

Run a DNS query concurrently against all servers in a list and provide results summary
MIT License
7 stars 0 forks source link

Fix errcheck linting errors #625

Closed atc0005 closed 3 months ago

atc0005 commented 3 months ago

Resolve `return value of fmt.Fprintf is not checked`` errors by explicitly discarding return values (potential error, bytes written) since we do not need them and the potential for failure (in this particular use case) is highly unlikely.