-
Notifications
You must be signed in to change notification settings - Fork 15
/
nrf.go
48 lines (37 loc) · 959 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
// SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]>
// Copyright 2019 free5GC.org
//
// SPDX-License-Identifier: Apache-2.0
/*
* API version: 1.0.0
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package main
import (
"fmt"
"os"
"github.com/urfave/cli"
"github.com/omec-project/nrf/logger"
nrf_service "github.com/omec-project/nrf/service"
)
var NRF = &nrf_service.NRF{}
func main() {
app := cli.NewApp()
app.Name = "nrf"
logger.InitLog.Infoln(app.Name)
app.Usage = "Network Repository Function"
app.UsageText = "nrf -cfg <nrf_config_file.conf>"
app.Action = action
app.Flags = NRF.GetCliCmd()
if err := app.Run(os.Args); err != nil {
logger.AppLog.Fatalf("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
}