(src string)
| 117 | } |
| 118 | |
| 119 | func (a *StringArray) UnmarshalParam(src string) error { |
| 120 | *a = StringArray(strings.Split(src, ",")) |
| 121 | return nil |
| 122 | } |
| 123 | |
| 124 | func (s *Struct) UnmarshalParam(src string) error { |
| 125 | *s = Struct{ |
nothing calls this directly
no test coverage detected