5 lines
57 B
Go
5 lines
57 B
Go
package null
|
|
|
|
type Nullable interface {
|
|
IsNull() bool
|
|
}
|