(val interface{})
| 381 | } |
| 382 | |
| 383 | func NewNullGreekGodCustom(val interface{}) (x NullGreekGodCustom) { |
| 384 | err := x.Scan(val) // yes, we ignore this error, it will just be an invalid value. |
| 385 | _ = err // make any errcheck linters happy |
| 386 | return |
| 387 | } |
| 388 | |
| 389 | // Scan implements the Scanner interface. |
| 390 | func (x *NullGreekGodCustom) Scan(value interface{}) (err error) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…