fixup! Improve tests for the Update() function

pull/2/head
Vinícius Garcia 2020-10-26 00:16:19 -03:00
parent 417ea4660f
commit 2f386e8541
1 changed files with 16 additions and 0 deletions

16
nullable/nullable.go Normal file
View File

@ -0,0 +1,16 @@
package nullable
// Int ...
func Int(i int) *int {
return &i
}
// Float64 ...
func Float64(f float64) *float64 {
return &f
}
// String ...
func String(s string) *string {
return &s
}