mirror of
https://github.com/LukeHagar/log10go.git
synced 2025-12-06 04:20:12 +00:00
Updating github integration
This commit is contained in:
10
types/pointers.go
Normal file
10
types/pointers.go
Normal 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 }
|
||||
Reference in New Issue
Block a user