mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +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
|
|||
}
|