forked from free5gc/nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nrf.go
51 lines (39 loc) · 952 Bytes
/
nrf.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
/*
* API version: 1.0.0
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package main
import (
"fmt"
"os"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
"github.com/free5gc/nrf/logger"
nrf_service "github.com/free5gc/nrf/service"
"github.com/free5gc/version"
)
var NRF = &nrf_service.NRF{}
var appLog *logrus.Entry
func init() {
appLog = logger.AppLog
}
func main() {
app := cli.NewApp()
app.Name = "nrf"
fmt.Print(app.Name, "\n")
appLog.Infoln("NRF version: ", version.GetVersion())
app.Usage = "-free5gccfg common configuration file -nrfcfg nrf configuration file"
app.Action = action
app.Flags = NRF.GetCliCmd()
if err := app.Run(os.Args); err != nil {
appLog.Errorf("NRF Run Error: %v", err)
}
}
func action(c *cli.Context) error {
if err := NRF.Initialize(c); err != nil {
logger.CfgLog.Errorf("%+v", err)
return fmt.Errorf("Failed to initialize !!")
}
NRF.Start()
return nil
}