mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 23:23:12 +08:00
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},
|
|
}
|