add IsRequired to generator

main
Lynn Cyrin 5 years ago
parent 310bfeb194
commit 62e99ad1c1
No known key found for this signature in database
GPG Key ID: EE9CCB427DFEC897

@ -171,6 +171,11 @@ def _write_cli_flag_types(outfile, types):
return f.Name
}}
// IsRequired returns the whether or not the flag is required
func (f {name}Flag) IsRequired() bool {{
return f.Required
}}
// {name} looks up the value of a local {name}Flag, returns
// {context_default} if not found
func (c *Context) {name}(name string) {context_type} {{

Loading…
Cancel
Save