Update generator (#37)

This commit is contained in:
Jonas Plum
2022-03-12 21:09:10 +01:00
committed by GitHub
parent eced5df7c8
commit d353268cf2
28 changed files with 1303 additions and 1618 deletions

19
generated/pointer/pointer.go Executable 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
}