github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/command/flag/command.go (about) 1 package flag 2 3 import ( 4 "code.cloudfoundry.org/cli/types" 5 ) 6 7 type Command struct { 8 types.FilteredString 9 } 10 11 func (b *Command) UnmarshalFlag(val string) error { 12 b.ParseValue(val) 13 return nil 14 }