Comment out unused raw string variable

This commit is contained in:
Jeffrey Serio 2022-02-15 20:50:26 -06:00 committed by GitHub
parent 69dc22507e
commit 3809a3a3ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
main.go
View File

@ -18,13 +18,13 @@ import (
)
// TODO: Figure out what to do with this
const resetDNSMsg string = `
Note that you may need to flush your system's DNS cache for changes to take effect.
In most cases this could be done by restarting the resolver daemon.
Windows systems: open PowerShell as administrator and run "ipconfig /flushdns"
macOS: open terminal and run "sudo dscacheutil -flushcache"
Linux with Systemd: open terminal and run "sudo systemctl restart systemd-resolved"
Other init systems or *BSD: You probably already know how to do this.`
//const resetDNSMsg string = `
//Note that you may need to flush your system's DNS cache for changes to take effect.
//In most cases this could be done by restarting the resolver daemon.
//Windows systems: open PowerShell as administrator and run "ipconfig /flushdns"
//macOS: open terminal and run "sudo dscacheutil -flushcache"
//Linux with Systemd: open terminal and run "sudo systemctl restart systemd-resolved"
//Other init systems or *BSD: You probably already know how to do this.`
var localFilePaths = make(map[string]string, 4)