Files
dnshelper/structs.go
T
2026-03-03 13:58:06 -05:00

14 lines
288 B
Go

package main
type workingData struct {
HostsFileLocation string
IsNew bool
Hosts []string
Resolvers []string
DefaultContent []string
PrefixContent []string
NewContent []string
ExistingContent []string
PostfixContent []string
}