gum/format/options.go
2022-07-14 13:51:26 -04:00

9 lines
268 B
Go

package format
// Options is customization options for the format command
type Options struct {
Template string `arg:"" optional:"" help:"Template string to format"`
Type string `help:"Format to use" enum:"markdown,md,template,tpl" short:"t" default:"template"`
}