-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
59 lines (48 loc) · 1021 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
56
57
58
59
package main
import (
"flag"
"log"
"os"
"path/filepath"
"sync"
"github.com/ESNFranceG33kTeam/coCAS/cocas"
"github.com/ESNFranceG33kTeam/coCAS/docs"
"github.com/ESNFranceG33kTeam/coCAS/helpers"
"github.com/ESNFranceG33kTeam/coCAS/logger"
)
func startoptions() {
path, err := os.Getwd()
if err != nil {
log.Fatalln("Abs path doesn't exist !")
}
flag.StringVar(
&helpers.Confpathflag,
"conf",
filepath.Join(path, "test/conf.yaml"),
"path for the configuration file.",
)
flag.Parse()
}
func InitConf() {
helpers.InitFile()
helpers.ReadConfig()
logger.GetLogger().LogInit()
}
func main() {
docs.DrawStart()
startoptions()
InitConf()
cocas.InitCas()
logger.GetLogger().LogInfo("main", "coCAS ready.")
// create a WaitGroup
wg := new(sync.WaitGroup)
// add two goroutines to `wg` WaitGroup
wg.Add(2)
go func() {
logger.GetLogger().
LogCritical("main", "listen cas error", cocas.GetCasServer().ListenAndServe())
wg.Done()
}()
// wait until WaitGroup is done
wg.Wait()
}