This repository has been archived on 2024-12-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dir2opdspse/app/cmd/cmd.go
T

12 lines
188 B
Go
Executable File

package cmd
import "github.com/urfave/cli/v2"
func intFlag(name string, value int, usage string) *cli.IntFlag {
return &cli.IntFlag{
Name: name,
Value: value,
Usage: usage,
}
}