go-common/app/interface/live/lottery-interface/cmd/main.go
2019-04-22 18:49:16 +08:00

47 lines
1.0 KiB
Go

package main
import (
"flag"
"os"
"os/signal"
"syscall"
"time"
"go-common/app/interface/live/lottery-interface/internal/conf"
"go-common/app/interface/live/lottery-interface/internal/server/http"
"go-common/app/interface/live/lottery-interface/internal/service"
ecode "go-common/library/ecode/tip"
"go-common/library/log"
"go-common/library/net/trace"
)
func main() {
flag.Parse()
if err := conf.Init(); err != nil {
panic(err)
}
log.Init(conf.Conf.Log)
defer log.Close()
log.Info("lottery-interface-interface start")
trace.Init(conf.Conf.Tracer)
defer trace.Close()
ecode.Init(conf.Conf.Ecode)
service.Init(conf.Conf)
http.Init(conf.Conf)
c := make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT)
for {
s := <-c
log.Info("get a signal %s", s.String())
switch s {
case syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT:
log.Info("lottery-interface-interface exit")
time.Sleep(time.Second)
return
case syscall.SIGHUP:
default:
return
}
}
}