mirror of https://github.com/grafana/grafana.git
9 lines
134 B
Go
9 lines
134 B
Go
|
package util
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
var DryRunFlag = cli.BoolFlag{
|
||
|
Name: "dry-run",
|
||
|
Usage: "Only simulate actions",
|
||
|
}
|