mirror of
https://github.com/mudler/LocalAGI.git
synced 2026-07-24 11:15:22 -04:00
ff6890c9c1
Signed-off-by: Richard Palethorpe <io@richiejp.com>
6 lines
51 B
Go
6 lines
51 B
Go
package ptr
|
|
|
|
func To[T any](v T) *T {
|
|
return &v
|
|
}
|