13f4cf162e
* move grafana-build into pkg/build
12 lines
209 B
Go
12 lines
209 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var GCOMCommand = &cli.Command{
|
|
Name: "gcom",
|
|
Description: "Executes requests to grafana.com",
|
|
Subcommands: []*cli.Command{GCOMPublishCommand},
|
|
}
|