-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.go
48 lines (39 loc) · 859 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
package main
import (
"context"
"errors"
"fmt"
"log"
"os"
"os/signal"
"syscall"
hiddenlake "github.com/number571/hidden-lake"
"github.com/number571/hidden-lake/internal/helpers/traffic/pkg/app"
"github.com/number571/hidden-lake/internal/utils/flag"
)
func main() {
args := os.Args[1:]
if flag.GetBoolFlagValue(args, "version") {
fmt.Println(hiddenlake.CVersion)
return
}
app, err := app.InitApp(args)
if err != nil {
panic(err)
}
shutdown := make(chan os.Signal, 1)
signal.Notify(shutdown, syscall.SIGINT, syscall.SIGTERM)
ctx, cancel := context.WithCancel(context.Background())
closed := make(chan struct{})
defer func() {
cancel()
<-closed
}()
go func() {
defer func() { closed <- struct{}{} }()
if err := app.Run(ctx); err != nil && !errors.Is(err, context.Canceled) {
log.Fatal(err)
}
}()
<-shutdown
}