github.com/mpontillo/pop@v4.13.1+incompatible/nulls/string.go (about) 1 package nulls 2 3 import ( 4 "github.com/gobuffalo/nulls" 5 ) 6 7 // String replaces sql.NullString with an implementation 8 // that supports proper JSON encoding/decoding. 9 // 10 // Deprecated: use github.com/gobuffalo/nulls#String instead. 11 type String = nulls.String 12 13 // NewString returns a new, properly instantiated 14 // String object. 15 // 16 // Deprecated: use github.com/gobuffalo/nulls#NewString instead. 17 var NewString = nulls.NewString