7 lines
89 B
Go
7 lines
89 B
Go
package tool
|
|
|
|
func Karmaforge[T any](params ...any) *T {
|
|
var result T
|
|
return &result
|
|
}
|