mirror of
https://github.com/LukeHagar/plexgo.git
synced 2025-12-06 12:37:46 +00:00
11 lines
370 B
Go
11 lines
370 B
Go
// 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 }
|