1
0
mirror of https://github.com/dstotijn/go-notion.git synced 2025-06-08 23:46:12 +02:00
This commit is contained in:
mmmommm 2021-05-22 20:57:19 +09:00
parent 55aa9db5c7
commit d78e9e3f8e

View File

@ -12,7 +12,7 @@ func IntPtr(i int) *int {
return &i
}
// TimePtr returns the pointer of a time.Time value.
// BoolPtr returns the pointer of a bool value.
func BoolPtr(b bool) *bool {
return &b
}