(name string, value *string)
| 41 | } |
| 42 | |
| 43 | func String(name string, value *string) Spec { |
| 44 | return &StringSpec{ |
| 45 | Name: name, |
| 46 | Value: value, |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func (spec *StringSpec) Spec() Spec { return spec } |
| 51 |
no outgoing calls
no test coverage detected