-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
55 lines (43 loc) · 857 Bytes
/
main.go
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
)
import (
"github.com/urfave/cli"
)
var exitSts int
func main() {
defer finalize()
chSig := make(chan os.Signal)
signal.Notify(chSig, os.Interrupt, syscall.SIGTERM)
ch := make(chan struct{})
// FIXME: parallel post using goroutine
go run(ch)
select {
case <-chSig:
fmt.Fprintln(os.Stderr, "CTRL-C; exiting")
exitSts = 1
case <-ch:
}
}
func run(ch chan struct{}) {
defer close(ch)
app := cli.NewApp()
app.Name = "gat"
app.Version = VERSION
app.Usage = "Utility tool of concatnating and printing file to various services"
app.Author = "goldeneggg"
app.Email = "jpshadowapps@gmail.com"
app.Flags = GlobalFlags
app.Commands = Commands
if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
exitSts = 1
}
}
func finalize() {
os.Exit(exitSts)
}