mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 01:33:40 +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
|
||
|
}
|