mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 01:27:24 +00:00
17 lines
247 B
Go
17 lines
247 B
Go
![]() |
package helpers
|
||
|
|
||
|
func PointerInt32(value int32) *int32 {
|
||
|
pointer := value
|
||
|
return &pointer
|
||
|
}
|
||
|
|
||
|
func PointerInt64(value int64) *int64 {
|
||
|
pointer := value
|
||
|
return &pointer
|
||
|
}
|
||
|
|
||
|
func PointerBool(value bool) *bool {
|
||
|
pointer := value
|
||
|
return &pointer
|
||
|
}
|