mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
33 lines
594 B
Go
33 lines
594 B
Go
package main
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
const (
|
|
outfileFlagName = "outfile"
|
|
debugFlagName = "debug"
|
|
)
|
|
|
|
func outfileFlag() cli.Flag {
|
|
return &cli.StringFlag{
|
|
Name: outfileFlagName,
|
|
Value: "",
|
|
EnvVars: []string{"OUTFILE"},
|
|
Usage: "Path to output file",
|
|
}
|
|
}
|
|
|
|
func getOutfile(c *cli.Context) string {
|
|
return c.String(outfileFlagName)
|
|
}
|
|
|
|
func debugFlag() cli.Flag {
|
|
return &cli.BoolFlag{
|
|
Name: debugFlagName,
|
|
EnvVars: []string{"DEBUG"},
|
|
Usage: "Enable debug http request logging",
|
|
}
|
|
}
|
|
|
|
func getDebug(c *cli.Context) bool {
|
|
return c.Bool(debugFlagName)
|
|
}
|