Files
dnshelper/structs.go
T

14 lines
288 B
Go
Raw Normal View History

2026-03-03 13:58:06 -05:00
package main
type workingData struct {
HostsFileLocation string
IsNew bool
Hosts []string
Resolvers []string
DefaultContent []string
PrefixContent []string
NewContent []string
ExistingContent []string
PostfixContent []string
}