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