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