15 lines
383 B
Go
15 lines
383 B
Go
package utils
|
|
|
|
import (
|
|
"flag"
|
|
)
|
|
|
|
var (
|
|
// Deprecated
|
|
GitFlag = flag.Bool("git", false, "Use git to manage files")
|
|
// Deprecated
|
|
ResetFlag = flag.Bool("reset", false, "Reset files to their original state")
|
|
ParallelFiles = flag.Int("P", 100, "Number of files to process in parallel")
|
|
Filter = flag.String("filter", "", "Filter commands before running them")
|
|
)
|