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