-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
48 lines (36 loc) · 954 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 (
"log"
"net/http"
"strconv"
"github.com/kenshaw/ini"
"github.com/rs/cors"
)
type Config struct {
mailServer string
mailPort int
mailUsername string
mailPassword string
}
func main() {
fileCfg, err := ini.LoadFile("config.cfg")
if err != nil {
log.Fatal("Error with service configuration %s", err)
}
port := fileCfg.GetKey("service.port")
if port == "" {
log.Fatal("Error with port number configuration")
}
serverPort := fileCfg.GetKey("service.mailport")
serverPortI, _ := strconv.Atoi(serverPort)
config := &Config{
mailServer: fileCfg.GetKey("service.mailserver"),
mailPort: serverPortI,
mailUsername: fileCfg.GetKey("service.mailusername"),
mailPassword: fileCfg.GetKey("service.mailpassword"),
}
apiConnection := CreateApiConnection(config)
router := NewRouter(apiConnection)
handler := cors.Default().Handler(router)
log.Fatal(http.ListenAndServe(":"+port, handler))
}