Release catalyst

This commit is contained in:
Jonas Plum
2021-12-13 00:39:15 +01:00
commit 15cf0ebd49
339 changed files with 111677 additions and 0 deletions

19
pointer/pointer.go Normal file
View File

@@ -0,0 +1,19 @@
package pointer
import "time"
func String(v string) *string {
return &v
}
func Int64(v int64) *int64 {
return &v
}
func Bool(v bool) *bool {
return &v
}
func Time(v time.Time) *time.Time {
return &v
}