()
| 94 | func newTimeVar(t *time.Time) *timeVar { return &timeVar{t: t} } |
| 95 | |
| 96 | func (v timeVar) String() string { |
| 97 | return v.t.Format(time.RFC3339) |
| 98 | } |
| 99 | |
| 100 | func (v timeVar) Set(s string) error { |
| 101 | if s == "" { |
no outgoing calls
no test coverage detected