summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-16 13:51:25 -0600
committerJeff Carr <[email protected]>2024-11-16 13:51:25 -0600
commit3f10b49f048b773cd3c43b7ea035623979166e5c (patch)
treeae4ddc71599ba93105defe1a8bf3e45f2570cddf /structs.go
parent68933a8ec78d6b3476a9fe275b15cf45aedd4c0d (diff)
misc
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/structs.go b/structs.go
index 3f5294a..02e9500 100644
--- a/structs.go
+++ b/structs.go
@@ -10,11 +10,11 @@ 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
- distro string // debian,redhat,gentoo,macos,wincrap
- machine *zoopb.Machine // my protobuf
+ 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
+ distro string // debian,redhat,gentoo,macos,wincrap
+ machine *zoopb.Machine // my protobuf
// packages *zoopb.Packages // installed packages and versions
}