zood/structs.go

15 lines
336 B
Go
Raw Normal View History

2024-11-15 01:22:47 -06:00
package main
2024-11-15 09:12:08 -06:00
import "time"
2024-11-15 01:22:47 -06:00
var me *stuff
// this app's variables
type stuff struct {
2024-11-15 09:12:08 -06:00
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
2024-11-15 01:22:47 -06:00
}