-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
60 lines (48 loc) · 1.02 KB
/
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
56
57
58
59
60
package main
import (
"context"
"net/http"
"os"
"os/signal"
"time"
"sp-slack/config"
"sp-slack/handler"
"sp-slack/logger"
"sp-slack/db"
"sp-slack/hopper"
)
func main() {
config.Init()
db.ConnectDB()
hopper.InitApi()
handler.RegisterRoutes()
server := createServer()
// will terminate with interrupt signal
startServer(server)
}
func createServer() *http.Server {
var server *http.Server
server = &http.Server{
Addr: ":" + config.Port,
}
return server
}
// this function will not terminate until an interrupt signal
// is provided, thus this function should be called last
func startServer(server *http.Server) {
var err error
go func() {
logger.Infof("starting server on port: %s", config.Port)
if err = server.ListenAndServe(); err != nil {
logger.Fatal(err)
}
}()
stop := make(chan os.Signal, 1)
signal.Notify(stop, os.Interrupt)
<-stop
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
if err = server.Shutdown(ctx); err != nil {
logger.Error(err)
}
}