(val interface{})
| 191 | } |
| 192 | |
| 193 | func NewNullProjectStatus(val interface{}) (x NullProjectStatus) { |
| 194 | x.Scan(val) // yes, we ignore this error, it will just be an invalid value. |
| 195 | return |
| 196 | } |
| 197 | |
| 198 | // Scan implements the Scanner interface. |
| 199 | func (x *NullProjectStatus) Scan(value interface{}) (err error) { |
searching dependent graphs…