blob: 5264b692621a9a422fc4a3d6e79955ed34d92bdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
package main
import (
"os"
"time"
"go.wit.com/dev/alexflint/arg"
"go.wit.com/log"
)
var VERSION string
var BUILDTIME string
func main() {
var pp *arg.Parser
pp = arg.MustParse(&argv)
if pp == nil {
pp.WriteHelp(os.Stdout)
os.Exit(0)
}
me := new(gusconf)
me.pollDelay = 10 * time.Second
if argv.Daemon {
// turn off timestamps for STDOUT (systemd adds them)
log.DaemonMode(true)
startHTTP()
os.Exit(0)
}
// go NewWatchdog()
startHTTP()
}
|