shad-go/lectures/07-sql/nulls/nulls.go

7 lines
70 B
Go
Raw Normal View History

2020-04-09 11:15:34 +00:00
package nulls
2020-04-08 19:20:23 +00:00
type NullString struct {
2020-04-09 11:15:34 +00:00
String string
Valid bool
2020-04-08 19:20:23 +00:00
}