Updating github integration

This commit is contained in:
Niklas Nielsen
2024-05-24 18:26:16 -07:00
commit 65b44423c6
179 changed files with 23972 additions and 0 deletions

10
types/pointers.go Normal file
View File

@@ -0,0 +1,10 @@
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
package types
func String(s string) *string { return &s }
func Bool(b bool) *bool { return &b }
func Int(i int) *int { return &i }
func Int64(i int64) *int64 { return &i }
func Float32(f float32) *float32 { return &f }
func Float64(f float64) *float64 { return &f }