mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 13:21:00 +00:00
6 lines
68 B
Go
6 lines
68 B
Go
|
|
package pointer
|
||
|
|
|
||
|
|
func Pointer[T any](value T) *T {
|
||
|
|
return &value
|
||
|
|
}
|