15 lines
336 B
Go
15 lines
336 B
Go
package main
|
|
|
|
import "time"
|
|
|
|
var me *stuff
|
|
|
|
// this app's variables
|
|
type stuff struct {
|
|
Hostname string // my hostname to send to zookeeper
|
|
Zookeeper string // the dns name for the zookeeper
|
|
pollDelay time.Duration // how often to report our status
|
|
dog *time.Ticker // the watchdog timer
|
|
dirs []string
|
|
}
|