22 lines
319 B
Go
22 lines
319 B
Go
package digstatus
|
|
|
|
/*
|
|
this parses the command line arguements
|
|
|
|
this enables command line options from other packages like 'gui' and 'log'
|
|
*/
|
|
|
|
import (
|
|
"go.wit.com/log"
|
|
)
|
|
|
|
var DNS log.LogFlag
|
|
|
|
func init() {
|
|
DNS.B = false
|
|
DNS.Name = "DNS"
|
|
DNS.Subsystem = "cpdns"
|
|
DNS.Desc = "dnsStatus.update()"
|
|
DNS.Register()
|
|
}
|