(src string)
| 111 | } |
| 112 | |
| 113 | func (t *Timestamp) UnmarshalParam(src string) error { |
| 114 | ts, err := time.Parse(time.RFC3339, src) |
| 115 | *t = Timestamp(ts) |
| 116 | return err |
| 117 | } |
| 118 | |
| 119 | func (a *StringArray) UnmarshalParam(src string) error { |
| 120 | *a = StringArray(strings.Split(src, ",")) |
nothing calls this directly
no test coverage detected