6 lines
67 B
Go
6 lines
67 B
Go
|
|
package settings
|
||
|
|
|
||
|
|
func ptrTo[T any](value T) *T {
|
||
|
|
return &value
|
||
|
|
}
|