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