mirror of
https://github.com/maride/pancap.git
synced 2024-11-22 08:54:24 +00:00
16 lines
364 B
Go
16 lines
364 B
Go
|
package output
|
||
|
|
||
|
import "flag"
|
||
|
|
||
|
var (
|
||
|
fullOutput *bool
|
||
|
printEmptyBlocks *bool
|
||
|
)
|
||
|
|
||
|
func RegisterFlags() {
|
||
|
fullOutput = flag.Bool("full-output", false, "Show full output instead of limiting submodule output")
|
||
|
printEmptyBlocks = flag.Bool("print-empty-blocks", false, "Prints blocks (submodule output) even if the submodule doesn't have any content to print.")
|
||
|
}
|
||
|
|
||
|
|