summaryrefslogtreecommitdiff
path: root/cmd/api/api.go
blob: ed0cb98c75f109ccdb0a32432f6a7374b7b76f57 (plain) (blame)
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
package api

import (
	"github.com/urfave/cli/v2"
	"gitrepo.ru/neonxp/idecnode/pkg/api"
	"gitrepo.ru/neonxp/idecnode/pkg/config"
	"gitrepo.ru/neonxp/idecnode/pkg/idec"
)

var APICommand *cli.Command = &cli.Command{
	Name:        "api",
	Description: "Start api server",
	Action: func(c *cli.Context) error {
		configPath := c.String("config")
		cfg, err := config.New(configPath)
		if err != nil {
			return err
		}

		idecApi, err := idec.New(cfg)
		if err != nil {
			return err
		}
		defer idecApi.Close()

		return api.New(idecApi, cfg).Run(c.Context)
	},
	Flags: []cli.Flag{
		&cli.StringFlag{
			Name:        "config",
			DefaultText: "config path",
			Value:       "./etc/node.yaml",
		},
	},
}